-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 887 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
[tool.poetry]
name = "degradai"
version = "0.7.1"
description = ""
authors = ["patacoing <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "3.10.15"
pytest = "^8.3.3"
scikit-learn = "^1.5.2"
ecotag-sdk = "^0.1.2"
azure-ai-ml = "^1.22.1"
azure-identity = "^1.19.0"
mlflow = "^2.17.2"
pillow = "^11.0.0"
opencv-python-headless = "^4.10.0.84"
tensorflow = "2.16.2"
keras = "^3.6.0"
fastapi = {extras = ["standard"], version = "^0.115.5"}
python-multipart = "^0.0.17"
pydantic = "^2.9.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
httpx = "^0.27.2"
[tool.poetry.group.macos]
optional = true
[tool.poetry.group.macos.dependencies]
tensorflow-metal = "^1.1.0"
tensorflow-macos = "^2.16.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"