-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apply pyproject-fmt v0.23 via pre-commits
- Loading branch information
Showing
1 changed file
with
45 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
|
@@ -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"] | ||
|
||
|