forked from raoulg/MADS-MachineLearning-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.25 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 = "mads-deeplearning"
version = "0.1.0"
description = ""
authors = [
{name = "R.Grouls", email = "[email protected]"},
]
requires-python = ">=3.10,<3.12"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"torch>=2.0.1",
"numpy>=1.25.0",
"loguru>=0.7.0",
"pydantic>=1.10.9",
"pandas>=2.0.3",
"mads-datasets[torch]>=0.3.12",
"matplotlib>=3.7.1",
"seaborn>=0.12.2",
"torchsummary>=1.5.1",
"plotly>=5.17.0",
"mltrainer>=0.1.127",
"hyperopt>=0.2.7",
"configspace>=0.7.1",
"bayesian-optimization>=1.4.3",
"tensorboard>=2.15.1",
"torch-tb-profiler>=0.4.3",
"pyright>=1.1.386",
]
[project.optional-dependencies]
all = [
"jupytext>=1.16.4",
"torch-geometric>=2.4.0",
"shap>=0.43.0",
]
nvim = [
"jupytext>=1.16.4",
]
graphs = [
"torch-geometric>=2.4.0",
]
explainable = [
"shap>=0.43.0",
]
[tool.rye]
dev-dependencies = [
"jupyter>=1.0.0",
"ruff>=0.4.3",
"mypy>=1.10.0",
"isort>=5.13.2",
]
virtual = true
managed = true