-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (65 loc) · 1.54 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
[build-system]
requires = [
"setuptools>=75.6.0",
"setuptools_scm[toml]"
]
build-backend = "setuptools.build_meta"
[project]
name = "spotoptim"
version = "0.3.2"
authors = [
{ name = "T. Bartz-Beielstein", email = "tbb@bartzundbartz.de" }
]
description = "spotoptim - a Python package for optimization tasks"
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",
]
dependencies = [
"build",
"matplotlib",
"numpy",
"pandas",
"plotly",
"PyQt6",
"scikit-learn",
"scipy",
"seaborn",
"tabulate",
]
# dynamic = ["version"]
[project.optional-dependencies]
dev = [
"mkdocs",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-material",
"mkdocs-exclude",
"mkdocstrings",
"mkdocstrings-python",
"nbformat",
"python-markdown-math",
]
[project.urls]
"Homepage" = "https://www.spotseven.de"
"Issues" = "https://github.com/sequential-parameter-optimization/spotoptim/issues"
"Repository" = "https://github.com/sequential-parameter-optimization/spotoptim"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.black]
line-length = 200
target-version = ["py312"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]