forked from AnswerDotAI/byaldi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
106 lines (94 loc) · 1.66 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
104
105
106
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"byaldi"
]
[project]
name = "Byaldi"
version = "0.0.1"
description = "Use late-interaction multi-modal models such as ColPALI in just a few lines of code."
readme = "README.md"
requires-python = ">=3.8"
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]" }
]
dependencies = [
"transformers",
"torch",
"ml-dtypes",
"ninja",
"pdf2image",
"srsly",
"colpali-engine==0.2.1",
"mteb==1.6.35",
]
[project.optional-dependencies]
server = [
"uvicorn",
"fastapi"
]
[project.urls]
"Homepage" = "https://github.com/answerdotai/byaldi"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::Warning"
]
[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