-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.67 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
[tool.poetry]
name = "chromadb-data-pipes"
version = "0.0.12"
description = "Chroma Data Pipes 🖇️ - The easiest way to get data into and out of ChromaDB"
authors = ["Trayan Azarov <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "chroma_dp" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/amikos-tech/chromadb-data-pipes/issues"
"Homepage" = "https://datapipes.chromadb.dev/"
"Source" = "https://github.com/amikos-tech/chromadb-data-pipes/"
[tool.poetry.scripts]
"cdp" = "chroma_dp.main:app"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
chromadb = { version = ">=0.4.0,<0.6.0", optional = true }
datasets = "^2.15.0"
tqdm = "^4.66.1"
rich = "^13.7.0"
typer = { extras = ["all"], version = "^0.9.0" }
pydantic = "^2.5.3"
tenacity = "^8.2.3"
fastapi = ">=0.108,<0.110"
langchain = ">=0.1,<0.3"
pypdf = "^3.17.4"
py-ulid = "^1.0.3"
python-dotenv = "^1.0.1"
orjson = "^3.9.12"
essential-generators = "^1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
black = "24.3.0"
pre-commit = "^3.6.0"
hypothesis = "^6.92.0"
testcontainers = "^4.7.2"
[tool.poetry.group.docs.dependencies]
pypdf = "^3.17.4"
unstructured = "^0.12.0"
[tool.poetry.group.embeddings.dependencies]
openai = "^1.8.0"
cohere = "^4.44"
unstructured = "^0.12.0"
sentence-transformers = "^2.2.2"
[tool.poetry.group.web.dependencies]
beautifulsoup4 = "^4.12.3"
unstructured = ">=0.12.0"
[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