Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: Add metadata to ESMPy pyproject.toml #315

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
25 changes: 25 additions & 0 deletions src/addon/esmpy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ name = "esmpy"
description = "ESMF Python interface"
# readme = "README.md"
maintainers = [ { name = "ESMF Core Team", email = "[email protected]" } ]
authors = [
{ name = "University Corporation for Atmospheric Research" },
{ name = "Massachusetts Institute of Technology" },
{ name = "Geophysical Fluid Dynamics Laboratory" },
{ name = "University of Michigan" },
{ name = "National Centers for Environmental Prediction" },
{ name = "Los Alamos National Laboratory" },
{ name = "Argonne National Laboratory" },
{ name = "NASA Goddard Space Flight Center" },
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Oceanography",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
requires-python = ">=3.7"
license = { text = "University of Illinois-NCSA" }
dependencies = [
Expand All @@ -28,6 +47,12 @@ testing = [
"pytest-json-report",
]

[project.urls]
Homepage = "http://earthsystemmodeling.org/esmpy/"
Documentation = "https://earthsystemmodeling.org/esmpy_doc/release/latest/html/"
sourcecode = "https://github.com/esmf-org/esmf/tree/develop/src/addon/esmpy"
releasenotes = "https://earthsystemmodeling.org/static/releases.html"

[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
Expand Down
Loading