-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.93 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2", "wheel"]
[project]
name = "crispy"
description = "Core-Level Spectroscopy Simulations in Python"
keywords = ["gui", "science", "simulation", "spectroscopy", "synchrotron"]
readme = "README.rst"
authors = [{ name = "Marius Retegan", email = "marius.retegan@esrf.fr" }]
license = { text = "MIT" }
classifiers = [
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = ["h5py", "matplotlib", "numpy", "ruamel.yaml", "silx", "xraydb"]
dynamic = ["version"]
[project.urls]
Changelog = "https://github.com/mretegan/crispy/blob/main/CHANGELOG.rst"
Documentation = "https://crispy.esrf.fr"
Downloads = "https://github.com/mretegan/crispy/releases"
Homepage = "https://github.com/mretegan/crispy"
Source = "https://github.com/mretegan/crispy"
Tracker = "https://github.com/mretegan/crispy/issues"
[project.optional-dependencies]
pyqt5 = ["pyqt5"]
pyqt6 = ["pyqt6"]
devel = [
"build",
"packaging",
"pyinstaller",
"pyinstaller-hooks-contrib",
"pytest",
"ruff",
"twine",
"wheel",
]
docs = ["sphinx", "sphinx-rtd-theme"]
notebook = ["jupyter", "ipympl"]
[project.gui-scripts]
crispy = "crispy.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = { attr = "crispy.__version__" }
# [tool.mypy]
# ignore_missing_imports = true