-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.56 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"mlwiz",
"mlwiz.data",
"mlwiz.evaluation",
"mlwiz.experiment",
"mlwiz.log",
"mlwiz.model",
"mlwiz.training",
"mlwiz.training.callback",
"mlwiz.training.event",
"mlwiz.ui",
]
[project]
name = "mlwiz"
dynamic = ["version"]
description = "Machine Learning Research Wizard"
authors = [ { name="Federico Errica", email="f.errica@protonmail.com" } ]
readme = "README.md"
keywords = ["machine-learning", "deep-learning", "experiments", "research", "evaluation-framework"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.10"
dependencies = [
"PyYAML>=5.4",
"dill>=0.3.8",
"Requests>=2.31.0",
"scikit_learn>=1.3.0",
"scipy>=1.15.3",
"pandas>=2.0.0",
"tensorboard>=2.11.0",
"tqdm>=4.47.0",
"ray[default]>=2.6.0",
"torchvision>=0.18.1",
"torch>=2.5.0",
"torch-geometric>=2.6.0",
"gpustat",
]
[project.urls]
"Homepage" = "https://mlwiz.readthedocs.io/en/latest/"
[project.scripts]
mlwiz-data = "mlwiz.build_dataset:main"
mlwiz-exp = "mlwiz.launch_experiment:main"
mlwiz-config-duplicator = "mlwiz.config_duplicator:main"
[tool.setuptools.dynamic]
version = {attr = "mlwiz.__version__"}
[tool.interrogate]
fail-under = 80
exclude = ["setup.py", "docs", "build"]
ignore-init-method = false
[tool.coverage.run]
source = ["mlwiz"]
omit = ["mlwiz/ui/progress_manager.py"]