-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 1012 Bytes
/
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
[tool.poetry]
name = "chromadb-ops"
version = "0.0.4"
description = "Tiny unofficial ChromaDB operations CLI to help you manage your ChromaDB instance."
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 = ">=0.4.22"
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"
black = "23.3.0"
pre-commit = "^3.6.0"
hypothesis = "^6.92.0"
[tool.mypy]
python_version = "3.9"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA"
testpaths = [
"tests",
"integration",
]