-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.58 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
[tool.poetry]
name = "chromadbx"
version = "0.1.0"
description = "Collection of useful utilities to Chroma AI application database core package."
authors = ["Trayan Azarov <[email protected]>"]
readme = "README.md"
packages = [{ include = "chromadbx" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/amikos-tech/chromadbx/issues"
"Homepage" = "https://cookbook.chromadb.dev/"
"Source" = "https://github.com/amikos-tech/chromadbx/"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pydantic = "^2.7.2"
httpx = "^0.27.2"
chromadb = { version = ">=0.4.0,<0.7.0", optional = true }
ulid-py = { version = "^1.1.0", optional = true }
nanoid = { version = "^2.0.0", optional = true }
llama-embedder = { version = "^0.0.7", optional = true }
[tool.poetry.group.dev.dependencies]
chromadb = { version = ">=0.4.0,<0.7.0" }
pytest = "^8.2.1"
black = "24.3.0"
pre-commit = "^3.6.0"
hypothesis = "^6.103.0"
ulid-py = { version = "^1.1.0" }
nanoid = { version = "^2.0.0" }
huggingface_hub = "^0.24.6"
llama-embedder = "^0.0.7"
mistralai = "^1.1.0"
spacy = "^3.8.4"
together = "^1.3.11"
cohere = "^5.13.8"
[tool.poetry.extras]
ids = ["ulid-py", "nanoid"]
embeddings = ["llama-embedder", "onnxruntime", "huggingface_hub", "mistralai", "spacy", "together", "vertexai"]
reranking = ["cohere", "together"]
core = ["chromadb"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA -q"
testpaths = [
"tests",
"integration",
]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true