-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (75 loc) · 1.77 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
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]"
]
build-backend = "setuptools.build_meta"
[project]
name = "spotgui"
version = "1.0.4"
authors = [
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
]
description = "spotgui - GUI for the Sequential Parameter Optimization in Python"
readme = "README.md"
license = { text="AGPL-3.0-or-later" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
# PEP 621 dependencies declaration
# adapt to your dependencies manager
dependencies = [
"captum",
"customtkinter",
"lightning>=2.4.0",
"graphviz",
"matplotlib",
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
"mkdocs-exclude",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"numpy",
"nbformat",
"pandas",
"plotly",
"PyQt6",
"python-markdown-math",
"pytorch-lightning>=1.4",
"river>=0.21.0",
"scikit-learn",
"scipy",
"spotpython>=0.15.6",
"spotriver>=0.4.3",
"seaborn",
"tabulate",
"tensorboard",
"torch",
"torch-tb-profiler",
"torchmetrics",
"torchvision",
]
# dynamic = ["version"]
[project.urls]
"Homepage" = "https://www.spotseven.de"
Issues = "https://github.com/sequential-parameter-optimization/spotgui/issues"
Repository = "https://github.com/sequential-parameter-optimization/spotgui"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]