-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (38 loc) · 890 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (38 loc) · 890 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "telco-churn"
version = "0.1.0"
description = "Telco Churn"
requires-python = ">=3.11,<3.14"
dependencies = [
"numpy>=2.2,<2.3",
"pandas>=2.2,<3",
"pyarrow>=22,<24",
"duckdb>=1.4,<2",
"huggingface-hub>=1.3,<2",
"scikit-learn>=1.8,<1.9",
"optuna>=4.7,<4.8",
"xgboost>=3.1,<3.2",
"lightgbm>=4.6,<4.7",
"shap>=0.50,<0.51",
"numba>=0.61,<0.62",
"dagster>=1.12,<1.13",
"dagster-webserver>=1.12,<1.13",
"dagster-dg-cli>=1.12,<1.13",
"dagster-duckdb>=0.28,<0.29",
]
[project.optional-dependencies]
dev = [
"jupyter",
"ipykernel",
]
[tool.dagster]
module_name = "telco_churn.definitions"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
telco_churn = ["**/*.sql", "**/*.json"]