-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.03 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
[tool.poetry]
name = "data-discovery-ai"
version = "0.1.0"
description = ""
authors = ["Viet Nguyen <[email protected]>"]
[tool.poetry.dependencies]
python = "~3.10"
black = "24.10.0"
pre-commit = "3.8.0"
requests = "2.32.3"
fastapi = "0.115.2"
uvicorn = "0.30.6"
python-dotenv = "1.0.1"
numpy = "1.26.4"
pandas = "2.2.3"
matplotlib = "3.9.2"
scikit-learn = "1.5.2"
transformers = "4.45.2"
tqdm = "4.66.5"
starlette = "0.40.0"
imblearn = "^0.0"
iterative-stratification = "^0.1.9"
pyyaml = "^6.0.2"
elasticsearch = "^8.15.1"
# https://github.com/python-poetry/poetry/issues/8271#issuecomment-1712020965
tensorflow-cpu = {version = "2.17.0" }
tensorflow-io-gcs-filesystem = [
{ version = ">= 0.23.1", markers = "platform_machine!='arm64' or platform_system!='Darwin'" },
{ version = "< 0.32.0", markers = "platform_system == 'Windows'" }
]
tf-keras = "2.17.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
httpx = "^0.27.0"
pytest-asyncio = "^0.23.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"