30 lines
715 B
TOML
30 lines
715 B
TOML
[project]
|
|
name = "mlops"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Your Name",email = "you@example.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<3.14"
|
|
dependencies = [
|
|
"great-expectations (>=1.6.3,<2.0.0) ; python_version == \"3.12\"",
|
|
"apache-airflow (>=3.1.0,<4.0.0)",
|
|
"scikit-learn (>=1.7.2,<2.0.0)",
|
|
"torch (>=2.8.0,<3.0.0)",
|
|
"mlflow (>=3.4.0,<4.0.0)",
|
|
"dvc (>=3.63.0,<4.0.0)",
|
|
"prometheus-client (>=0.20.0,<1.0.0)",
|
|
"requests (>=2.31.0,<3.0.0)",
|
|
"fastapi (>=0.104.0,<1.0.0)",
|
|
"pydantic (>=2.5.0,<3.0.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|