-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (80 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
87 lines (80 loc) · 1.82 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
82
83
84
85
86
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]"
]
build-backend = "setuptools.build_meta"
[project]
name = "spotpython"
version = "0.36.2"
authors = [
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
]
description = "spotpython - Sequential Parameter Optimization in Python"
readme = "README.md"
license = "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",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
# PEP 621 dependencies declaration
dependencies = [
"build",
"captum",
"factor_analyzer",
"forestci",
"graphviz",
"lightning>=2.0.0rc0",
"mapie",
"matplotlib",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.33",
"mkdocstrings-python>=1.10.8",
"mkdocs-exclude>=1.0.2",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-section-index>=0.3.9",
"numpy>=2.0.0",
"nbformat",
"pandas",
"plotly",
"pytest",
"pytest-mock",
"python-markdown-math",
"river>=0.22.0",
"scikit-learn",
"scipy",
"spotriver>=0.4.1",
"spotdesirability",
"seaborn",
"statsmodels",
"tabulate",
"tensorboard",
"torch",
"torchdiffeq",
"torch-tb-profiler",
"torchmetrics",
"torchvision",
"torchviz",
]
# dynamic = ["version"]
[project.urls]
"Homepage" = "https://www.spotseven.de"
Issues = "https://github.com/sequential-parameter-optimization/spotpython/issues"
Repository = "https://github.com/sequential-parameter-optimization/spotpython"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.black]
line-length = 200
target-version = ["py313"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]