-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
36 lines (32 loc) · 884 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
[project]
name = "mlflowstack"
description = "Mlflow with AWS, Azure Cloud, and GCP support."
dynamic = [ "version" ]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Burak Ince", email = "burak.ince@linux.org.tr" },
]
dependencies = [
"mlflow[extras,pipelines] (>=2.19.0,<3.0.0)",
"pymysql (>=1.1.1,<2.0.0)",
"psycopg2-binary (>=2.9.10,<3.0.0)",
"boto3 (>=1.35.99,<2.0.0)",
"sqlalchemy (>=2.0.37,<3.0.0)",
"google-cloud-storage (>=2.19.0,<3.0.0)",
"azure-storage-blob (>=12.24.0,<13.0.0)"
]
[tool.poetry]
version = "1.0"
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
testcontainers = "^4.9.0"
requests = "^2.32.3"
cloudpickle = "^3.1.0"
pre-commit = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"