-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (37 loc) · 1.13 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
# Follow PEP 621: https://peps.python.org/pep-0621/
# setuptools specifics: https://setuptools.pypa.io/en/stable/userguide/pyproject_config.html
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sweetsweep"
authors = [{name = "Matthieu Heitz", email = "[email protected]"}]
description = "SweetSweep: Run parameter sweeps and visualize results effortlessly"
urls = {"Source code" = "https://github.com/matthieuheitz/sweet-sweep"}
readme = "README.md"
dynamic = ["version"]
#dynamic = ["version", "readme"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'PyQt5',
'numpy',
'matplotlib'
]
[project.optional-dependencies]
parallel_sweep = [
'pathos',
]
examples = [
'matplotlib',
]
# setuptools
[tool.setuptools]
packages = ["sweetsweep"]
package-data = {"sweetsweep" = ["*.png",]}
[tool.setuptools.dynamic]
version = {attr = "sweetsweep.__version__"}
#readme = {file = ["README.md",]} # If I want to append other files to the description