-
Notifications
You must be signed in to change notification settings - Fork 62
/
pyproject.toml
103 lines (92 loc) · 1.91 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["byaldi*"]
[project]
name = "Byaldi"
version = "0.0.7"
description = "Use late-interaction multi-modal models such as ColPali in just a few lines of code."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = [
"reranking",
"retrieval",
"rag",
"nlp",
"colpali",
"colbert",
"multi-modal",
]
authors = [{ name = "Ben Clavié", email = "[email protected]" }]
maintainers = [
{ name = "Ben Clavié", email = "[email protected]" },
{ name = "Tony Wu", email = "[email protected]" },
]
dependencies = [
"colpali-engine>=0.3.4,<0.4.0",
"ml-dtypes",
"mteb==1.6.35",
"ninja",
"pdf2image",
"srsly",
"torch",
"transformers>=4.42.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.4.0", "ruff>=0.1.9"]
server = ["uvicorn", "fastapi"]
langchain = ["langchain-core"]
[project.urls]
"Homepage" = "https://github.com/answerdotai/byaldi"
[tool.pytest.ini_options]
filterwarnings = ["ignore::Warning"]
markers = ["slow: marks test as slow"]
testpaths = ["tests"]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"*.ipynb",
"examples",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
# Same as Black.
line-length = 88
output-format = "grouped"
target-version = "py39"
[tool.ruff.lint]
select = [
# bugbear rules
"B",
"I",
# remove unused imports
"F401",
# bare except statements
"E722",
# unused arguments
"ARG",
]
ignore = ["B006", "B018"]
unfixable = ["T201", "T203"]
ignore-init-module-imports = true