forked from jbellis/colbert-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "colbert-live"
version = "0.9.0"
authors = [
{ name = "Jonathan Ellis", email = "[email protected]" },
]
description = "ColBERT Live! implements efficient ColBERT and ColPaLi search on top of vector indexes that support live updates (without rebuilding the entire index)"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Indexing",
]
dependencies = [
"colbert-ai==0.2.20",
"torch>=1.13",
"colpali-engine>=0.3.1,<0.4.0",
"pillow",
"scikit-learn",
]
[project.urls]
"Homepage" = "https://github.com/jbellis/colbert-live"
"Issues" = "https://github.com/jbellis/colbert-live/issues"
[tool.setuptools.packages.find]
include = ["colbert_live*"]
[tool.setuptools.package-data]
colbert_live = ["py.typed"]