-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (39 loc) · 1.09 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
[tool.poetry]
name = "chromadb-ops"
version = "0.1.3"
description = "Maintenance CLI for Chroma AI-native database."
authors = ["Trayan Azarov <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "chroma_ops" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/amikos-tech/chromadb-ops/issues"
"Homepage" = "https://github.com/amikos-tech/chromadb-ops/"
"Source" = "https://github.com/amikos-tech/chromadb-ops/"
[tool.poetry.scripts]
"chops" = "chroma_ops.main:app"
[tool.poetry.dependencies]
python = ">=3.9"
chromadb = { version = ">=0.4.0,<0.7.0", optional = true }
typer = {extras = ["all"], version = "^0.9.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-xdist = "^3.6.1"
black = "24.3.0"
pre-commit = "^3.6.0"
hypothesis = "^6.92.0"
chromadb = { version = ">=0.4.0,<0.7.0" }
[tool.poetry.extras]
core = ["chromadb"]
[tool.mypy]
python_version = "3.9"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA"
testpaths = [
"tests",
"integration",
]