-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (42 loc) · 995 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
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "app"
version = "0.1.0"
description = "Complete ML Batch Job, including MLOps Best Practices"
authors = ["Ezzaldin97 <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
python-dotenv = "^1.0.0"
pandas = "^2.0.1"
requests = "^2.30.0"
duckdb = "^0.9.2"
ploomber-cloud = "^0.1.1"
scikit-learn = "^1.3.0"
prefect = "^2.10.0"
streamlit = "^1.20.0"
prefect-email = "^0.3.2"
sktime = "^0.24.1"
prophet = "^1.1.3"
dvc = "^3.33.0"
seaborn = "^0.13.0"
statsmodels = "^0.14.1"
dvclive = "^3.4.0"
plotly = "^5.13.0"
evidently = "^0.4.13"
pydantic = "^1.10.13"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.1"
pipreqs = "^0.4.13"
[tool.poetry.group.linting.dependencies]
black = "^23.3.0"
ruff = "^0.0.287"
[tool.black]
line-length = 88
target_version = ['py310', 'py311', 'py312']
preview = true
[tool.ruff]
line-length = 88
src = ["app"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"