-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (41 loc) Β· 1.34 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
include = ["examples"]
[project]
name = "colpali_cookbooks"
dynamic = ["version"]
description = "Recipes for learning, fine-tuning, and adapting ColPali to your multimodal RAG use cases."
authors = [{ name = "Tony Wu", email = "tony.wu@live.fr" }]
maintainers = [{ name = "Tony Wu", email = "tony.wu@live.fr" }]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"colpali-engine[interpretability,train]>=0.3.2,<0.4.0",
"datasets>=3.0.1,<4.0.0",
"huggingface_hub",
"ipykernel",
]
[project.optional-dependencies]
dev = ["nvitop", "pytest>=8.2.1", "ruff>=0.4.5"]
skypilot = ["skypilot==0.6.1,<1.0.0"]
all = ["colpali-cookbooks[dev]", "colpali-cookbooks[skypilot]"]
[project.urls]
homepage = "https://github.com/tonywu71/colpali-cookbooks"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]