-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (60 loc) · 1.74 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
[project]
name = "crunchy-mining"
version = "0.1.0"
dependencies = [
"altair[all]>=5.3.0",
"catboost>=1.2.3",
"duckdb>=1.0.0",
"geopandas>=0.14.4",
"h5py>=3.11.0",
"hydra-core>=1.3.2",
"imbalanced-learn>=0.12.2",
"itables>=2.1.0",
"lightgbm>=4.3.0",
"matplotlib>=3.8.4",
"mlflow>=2.12.2",
"nltk>=3.8.1",
"numpy>=1.26.4",
"openpyxl>=3.1.3",
"pandas>=2.2.2",
"pandera>=0.19.2",
"pip>=24.0",
"pyspark>=3.5.1",
"python-dotenv>=1.0.1",
"scikit-learn>=1.4.2",
"seaborn>=0.13.2",
"setuptools>=69.5.1",
"shap>=0.45.0",
"st-pages>=0.4.5",
"streamlit>=1.33.0",
"tqdm>=4.66.2",
"tslearn>=0.6.3",
"vegafusion-jupyter[embed]>=1.6.6",
"vegafusion[embed]>=1.6.6",
"xgboost>=2.0.3",
"ydata-profiling>=4.8.3",
]
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["crunchy_mining"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.rye]
managed = true
dev-dependencies = [
"black>=24.3.0",
"isort>=5.13.2",
"jupyterlab-code-formatter>=2.2.1",
"jupyterlab-git>=0.50.0",
"jupyterlab>=4.2.0",
"jupytext>=1.16.1",
]
[tool.rye.scripts]
start-mlflow = 'mlflow server --backend-store-uri sqlite:///.mlflow/mlflow.db --default-artifact-root=.mlflow/mlruns --host 0.0.0.0 --port 5001'
start-mlflow-auth = { cmd = 'mlflow server --app-name basic-auth --backend-store-uri sqlite:///.mlflow/mlflow.db --default-artifact-root=.mlflow/mlruns --host 0.0.0.0 --port 5001', env = { MLFLOW_AUTH_CONFIG_PATH = ".mlflow/basic_auth.ini" } }
clean-mlflow = 'mlflow gc --backend-store-uri sqlite:///.mlflow/mlflow.db'
[tool.ruff.lint.isort]
force-single-line = true