forked from astrojuanlu/workshop-from-zero-to-mlops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1021 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "reddit_a_predictor"
version = "0.1.0"
description = "Predictor for nasty Reddit stories"
authors = [
{name = "Juan Luis Cano Rodríguez", email = "[email protected]"},
]
dependencies = [
"kedro-datasets[polars,huggingface]==3.0.1",
"kedro-mlflow",
"kedro==0.19.6",
"mlflow>=2", # Undeclared lower version cap of kedro-mlflow
"nltk",
"polars[deltalake]~=1.0.0",
"praw",
"pydantic",
"s3fs",
"scikit-learn",
"setuptools", # Undeclared dependency of kedro-mlflow
]
requires-python = ">=3.11"
readme = "README.md"
[tool.pdm]
distribution = true
[tool.kedro]
project_name = "reddit_a_predictor"
package_name = "reddit_a_predictor"
kedro_init_version = "0.19.6"
[tool.ruff]
show-fixes = true
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # Pycodestyle
"W", # Pycodestyle
"UP", # pyupgrade
"I", # isort
"PL", # Pylint
]
ignore = ["PLR0913"]