-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (36 loc) · 975 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
[tool.poetry]
name = "ahnlich-client-py"
version = "0.1.0"
description = "A python client for interacting with Ahnlich DB and AI"
authors = ["David Onuh <[email protected]>"]
readme = "README.md"
packages = [
{ include = "ahnlich_client_py" },
{ include = "VERSION" },
]
exclude = [
"ahnlich_client_py/tests", "demo_tracing.py"
]
[tool.poetry.scripts]
bumpversion = "bumpversion:main"
change_poetry_version = "poetry_versioning:main"
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.26.4"
toml = "^0.10.2"
bump2version = "^1.0.1"
generic-connection-pool = "^0.7.0"
pytest-asyncio = "^0.24.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
pytest = "^8.2.2"
pylint = "^3.2.3"
opentelemetry-api = "^1.26.0"
opentelemetry-sdk = "^1.26.0"
opentelemetry-instrumentation = "^0.47b0"
opentelemetry-exporter-otlp = "^1.26.0"
pillow = "^10.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"