-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (91 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "vn1-sales-forecast"
readme = { file = "README.md", content-type = "text/markdown" }
dynamic = ["version"]
requires-python = ">=3.10,<3.11"
dependencies = [
"altair[all]",
"hierarchicalforecast",
"holidays",
"jax",
"kedro-datasets",
"kedro-viz",
"kedro==0.19.8",
"lightgbm",
"mlforecast",
"neuralforecast",
"ray[default]",
"hyperopt",
"numpy",
"optax",
"optuna",
"optuna-dashboard",
"pandas",
"polars[all]",
"ruptures",
"scikit-learn",
"scikit-lego",
"seaborn",
"statsforecast",
"streamlit",
"timesfm @ git+https://github.com/google-research/timesfm.git",
"tqdm",
"tsfeatures",
"watchdog",
"xgboost",
]
[tool.rye]
dev-dependencies = [
"commitizen",
"ipykernel",
"pre-commit",
"pydoclint",
"pyright",
"ruff",
"pytest",
]
[tool.kedro]
package_name = "vn1_sales_forecast"
project_name = "vn1-sales-forecast"
kedro_init_version = "0.19.8"
tools = ["Linting", "Testing", "Data Structure", "Kedro Viz"]
example_pipeline = "False"
source_dir = "src"
[tool.setuptools.dynamic.version]
attr = "vn1_sales_forecast.__version__"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.ruff]
line-length = 100
show-fixes = true
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"RUF", # ruff rules
"PL", # pylint
]
ignore = [
"E501",
"PLR2004", # Magic value used in comparison
"PLR0913", # Too many arguments
]
unfixable = [
"F401", # imported but unused
]
[tool.ruff.lint.isort]
known-first-party = ["vn1_sales_forecast"]
split-on-trailing-comma = false
[tool.typos.default.extend-words]
mape = "mape"
arange = "arange"
[tool.kedro_telemetry]
project_id = "1a6c8efcfad4483899e6116e53f99ad8"