-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.33 KB
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
[project]
name = "artifact-foundry"
version = "0.1.0"
description = "Personal learning repository for hands-on machine learning, deep learning, and data science implementations"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24.0",
"pandas>=2.0.0",
]
[project.optional-dependencies]
# Classical Machine Learning
ml = [
"scikit-learn>=1.3.0",
"scipy>=1.11.0",
"statsmodels>=0.14.0",
"xgboost>=2.0.0",
"lightgbm>=4.0.0",
"optuna>=3.0.0",
"shap>=0.40.0",
]
# Deep Learning
dl = [
"torch>=2.0.0",
"torchvision>=0.15.0",
"tensorflow>=2.13.0",
"keras>=2.13.0",
]
# Visualization
viz = [
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"plotly>=5.14.0",
"bokeh>=3.1.0",
"rich>=13.0.0",
]
# Jupyter & Notebooks
notebooks = [
"jupyter>=1.0.0",
"jupyterlab>=4.0.0",
"ipykernel>=6.23.0",
"ipywidgets>=8.0.0",
"notebook>=7.0.0",
]
# Development Tools
dev = [
"pytest>=7.3.0",
"black>=23.3.0",
"ruff>=0.0.270",
"mypy>=1.3.0",
"isort>=5.12.0",
]
# All dependencies (convenience group)
all = [
"artifact-foundry[ml,dl,viz,notebooks,dev]",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# No packages to install - this is just for dependency management
py-modules = []