Skip to content

Commit

Permalink
run pre-commits
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Jul 10, 2023
1 parent d041efb commit 5410026
Showing 1 changed file with 45 additions and 39 deletions.
84 changes: 45 additions & 39 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,44 +1,14 @@
[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"
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",
]
dependencies = [
"cftime",
"certifi",
"numpy",
]
dynamic = ["version"]

[project.readme]
text = """\
netCDF version 4 has many features not found in earlier versions of the library,
Expand All @@ -50,15 +20,51 @@ and should be familiar to users of that module.
"""
content-type = "text/x-rst"

keywords = [
"climate",
"data",
"meteorology",
"netcdf",
"network",
"numpy",
"oceanography",
"science",
]
license = {text = "MIT"}
authors = [
{name = "Jeff Whitaker", email = "[email protected]"},
]
requires-python = ">=3.7"
classifiers = [
"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",
]
dynamic = [
"version",
]
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 5410026

Please sign in to comment.