-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.08 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "mlops-project"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
hydra-core = "^1.3.2"
dvc = "^3.51.2"
gdown = "^5.2.0"
psycopg2-binary = "^2.9.9"
pandas = "^2.2.2"
numpy = "<2.0.0"
scikit-learn = "^1.5.0"
matplotlib = "^3.9.0"
seaborn = "^0.13.2"
pylint = "^3.2.5"
great-expectations = "^0.18.17"
zenml = "0.58.2"
pyarrow = "15.0.2"
mlflow = "2.14.2"
mlflow-skinny = "2.14.2"
giskard = "2.14.0"
xgboost = "^2.1.0"
flask = "3.0.3"
gradio = "3.50.2"
imblearn = "^0.0"
# Dev group
[tool.poetry.group.dev]
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
pre-commit = "^3.7.1"
[tool.ruff]
ignore = ["E402"]
# Test group
[tool.poetry.group.test]
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
coverage = "^7.6.0"
pytest-xdist = "^3.6.1"
pytest-cov = "^5.0.0"
[tool.pytest.ini_options]
addopts = "--disable-warnings"
pythonpath = [".", "src"]
[tool.coverage.report]
exclude_also = ["def __repr__"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"