Skip to content

Commit

Permalink
project definition from pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
patquem committed Jan 15, 2024
1 parent 829792a commit 033e0dc
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ 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',
'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",
Expand All @@ -25,7 +35,6 @@ dependencies = [
"parse",
"pywin32; platform_system == 'Windows'",
]
dynamic = ["version"]

[project.scripts]
fitspy = "fitspy.app.gui:fitspy_launcher"
Expand All @@ -38,7 +47,7 @@ version = { attr = "fitspy.VERSION" }

[tool.setuptools.packages.find]
where = ["."]
include = ["fitspy*"] # alternatively: `exclude = ["additional*"]`
include = ["fitspy*"]
namespaces = false

[tool.pytest.ini_options]
Expand Down

0 comments on commit 033e0dc

Please sign in to comment.