-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (78 loc) · 2.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "litepali"
version = "0.0.5"
description = "Lightweight ColPali-based retrieval for cloud"
readme = "README.md"
authors = [{ name = "Simeon Emanuilov", email = "[email protected]" }]
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Text Processing :: Indexing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"colpali",
"image retrieval",
"rag",
"semantic search",
"vision-language-models",
"document-ai",
"multi-modal",
"information retrieval",
"machine learning",
"cloud-optimized",
]
dependencies = [
"colpali-engine>=0.3.0,<0.4.0",
]
[project.urls]
"Homepage" = "https://github.com/s-emanuilov/litepali"
"Website" = "https://litepali.com"
"Bug Tracker" = "https://github.com/s-emanuilov/litepali/issues"
[tool.ruff]
lint.select = ["E", "F"]
lint.ignore = []
lint.fixable = ["A", "B", "C", "D", "E", "F"]
lint.unfixable = []
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
line-length = 110
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py310"
[tool.ruff.lint.mccabe]
max-complexity = 10