-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 2.09 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
67
68
69
70
71
72
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "fitspy"
dynamic = ["version"]
authors = [
{ name = "Patrick Quéméré", email = "[email protected]" },
{ name = "Killian Pavy", email = "[email protected]" }
]
description = "Fitspy: a generic tool to fit spectra in python"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["Fitspy", "fit", "spectra", "spectrum", "map", "1D", "2D",
"decomposition", "Gaussian", "Lorentzian", "Pseudovoigt", "GUI"]
license = { text = "GPL v3" }
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Environment :: Console',
]
dependencies = [
"pyside6",
"numpy",
"pandas",
"matplotlib",
"scipy",
"lmfit",
"parse",
"dill",
"superqt[cmap]",
# "pyqt-toast-notification",
"rosettasciio",
"pywin32; platform_system == 'Windows'",
]
[tool.setuptools.package-data]
"fitspy" = ["resources/iconpack/*.png", "resources/iconpack/*.svg"]
[project.scripts]
fitspy = "fitspy.apps.pyside.main:fitspy_launcher"
fitspy-tk = "fitspy.apps.tkinter.gui:fitspy_launcher"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = { attr = "fitspy.VERSION" }
[tool.setuptools.packages.find]
where = ["."]
include = ["fitspy*"]
namespaces = false
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
[project.urls]
Homepage = "https://github.com/CEA-MetroCarac/fitspy"
Documentation = "https://cea-metrocarac.github.io/fitspy/doc/index.html"
[project.optional-dependencies]
dev = ["pytest", "watchdog", "esbonio", "sphinx", "doc8", "rstcheck", "sphinx-rtd-theme", "sphinx-copybutton"]