Skip to content

Commit

Permalink
force readme below dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Jul 11, 2023
1 parent d041efb commit 792546b
Showing 1 changed file with 39 additions and 33 deletions.
72 changes: 39 additions & 33 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,44 +1,47 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"Cython>=0.29",
"oldest-supported-numpy",
"setuptools>=61",
"Cython>=0.29",
"oldest-supported-numpy",
"setuptools>=61",
]
build-backend = "setuptools.build_meta"

[project]
name = "netCDF4"
name = "netcdf4"
description = "Provides an object-oriented python interface to the netCDF version 4 library"

keywords = [
"climate",
"data",
"meteorology",
"netcdf",
"network",
"numpy",
"oceanography",
"science",
]
license = {text = "MIT"}
authors = [
{name = "Jeff Whitaker", email = "[email protected]"},
]
requires-python = ">=3.7"
keywords = [
"numpy", "netcdf", "data", "science", "network", "oceanography",
"meteorology", "climate",
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"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",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Compression",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Compression",
]
dependencies = [
"cftime",
"certifi",
"numpy",
dynamic = [
"version",
]
dynamic = ["version"]

[project.readme]
text = """\
netCDF version 4 has many features not found in earlier versions of the library,
Expand All @@ -49,16 +52,19 @@ older versions of the library. The API is modelled after Scientific.IO.NetCDF,
and should be familiar to users of that module.
"""
content-type = "text/x-rst"

dependencies = [
"certifi",
"cftime",
"numpy",
]
[project.urls]
Documentation = "https://unidata.github.io/netcdf4-python/"
Repository = "https://github.com/Unidata/netcdf4-python"
[project.scripts]
nc3tonc4 = "netCDF4.utils:nc3tonc4"
nc4tonc3 = "netCDF4.utils:nc4tonc3"
ncinfo = "netCDF4.utils:ncinfo"

[project.urls]
Documentation = "https://unidata.github.io/netcdf4-python/"
Repository = "https://github.com/Unidata/netcdf4-python"

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

Expand Down

0 comments on commit 792546b

Please sign in to comment.