Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 50 additions & 2 deletions metisp/pymetis/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,55 @@ build-backend = "setuptools.build_meta"
[project]
name = "pymetis"
version = "0.0.1"
dynamic = ["description","requires-python","license","authors","classifiers","urls","dependencies","optional-dependencies"]
description = "Python package for METIS python recipes"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "European Southern Observatory", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

License classifiers are deprecated (and I believe even raise an error in the latest setuptools)

"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Development Status :: 2 - Pre-Alpha",
]
dependencies = [
"pycpl",
"pyesorex",
"edps",
"astropy",
"edpsgui>=0.8.0",
"edpsplot>=0.2.1",
]

[project.urls]
Homepage = "https://www.eso.org/sci/software/pipelines/"

[project.optional-dependencies]
doc = [
"sphinx",
]
test = [
"pytest",
]

[tool.setuptools]
zip-safe = false

[tool.setuptools.packages.find]
where = ["src"]

[tool.uv]
extra-index-url = [
"https://ivh.github.io/pycpl/simple/",
"https://ftp.eso.org/pub/dfs/pipelines/libraries/",
]

[tool.pytest.ini_options]
addopts = "--strict-markers"
Expand All @@ -22,4 +70,4 @@ markers = [
"pyesorex: marks tests that depend on `pyesorex`",
"slow: marks tasts with full-size data",
"metadata: marks tests that verify recipe metadata",
]
]
Loading