-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (53 loc) · 1.69 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
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "fitspy"
dynamic = ["version"]
authors = [{ name = "Patrick Quéméré", email = "[email protected]" }]
description = "Fitspy: a generic tool to fit spectra in python"
readme = "README.md"
requires-python = ">=3.7"
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.7',
'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 = [
"numpy",
"pandas",
"matplotlib",
"scipy",
"lmfit",
"parse",
"dill",
"rosettasciio",
"pywin32; platform_system == 'Windows'",
]
[project.scripts]
fitspy = "fitspy.app.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.dev/CEA-MetroCarac/fitspy"
Documentation = "https://cea-metrocarac.github.io/fitspy/doc/index.html"