Skip to content

Commit 792546b

Browse files
committed
force readme below dynamic
1 parent d041efb commit 792546b

File tree

1 file changed

+39
-33
lines changed

1 file changed

+39
-33
lines changed

pyproject.toml

Lines changed: 39 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,47 @@
11
[build-system]
2+
build-backend = "setuptools.build_meta"
23
requires = [
3-
"Cython>=0.29",
4-
"oldest-supported-numpy",
5-
"setuptools>=61",
4+
"Cython>=0.29",
5+
"oldest-supported-numpy",
6+
"setuptools>=61",
67
]
7-
build-backend = "setuptools.build_meta"
88

99
[project]
10-
name = "netCDF4"
10+
name = "netcdf4"
1111
description = "Provides an object-oriented python interface to the netCDF version 4 library"
12+
13+
keywords = [
14+
"climate",
15+
"data",
16+
"meteorology",
17+
"netcdf",
18+
"network",
19+
"numpy",
20+
"oceanography",
21+
"science",
22+
]
23+
license = {text = "MIT"}
1224
authors = [
1325
{name = "Jeff Whitaker", email = "jeffrey.s.whitaker@noaa.gov"},
1426
]
1527
requires-python = ">=3.7"
16-
keywords = [
17-
"numpy", "netcdf", "data", "science", "network", "oceanography",
18-
"meteorology", "climate",
19-
]
20-
license = {text = "MIT"}
2128
classifiers = [
22-
"Development Status :: 3 - Alpha",
23-
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.7",
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
27-
"Programming Language :: Python :: 3.10",
28-
"Programming Language :: Python :: 3.11",
29-
"Intended Audience :: Science/Research",
30-
"License :: OSI Approved :: MIT License",
31-
"Topic :: Software Development :: Libraries :: Python Modules",
32-
"Topic :: System :: Archiving :: Compression",
33-
"Operating System :: OS Independent",
29+
"Development Status :: 3 - Alpha",
30+
"Intended Audience :: Science/Research",
31+
"License :: OSI Approved :: MIT License",
32+
"Operating System :: OS Independent",
33+
"Programming Language :: Python :: 3 :: Only",
34+
"Programming Language :: Python :: 3.7",
35+
"Programming Language :: Python :: 3.8",
36+
"Programming Language :: Python :: 3.9",
37+
"Programming Language :: Python :: 3.10",
38+
"Programming Language :: Python :: 3.11",
39+
"Topic :: Software Development :: Libraries :: Python Modules",
40+
"Topic :: System :: Archiving :: Compression",
3441
]
35-
dependencies = [
36-
"cftime",
37-
"certifi",
38-
"numpy",
42+
dynamic = [
43+
"version",
3944
]
40-
dynamic = ["version"]
41-
4245
[project.readme]
4346
text = """\
4447
netCDF version 4 has many features not found in earlier versions of the library,
@@ -49,16 +52,19 @@ older versions of the library. The API is modelled after Scientific.IO.NetCDF,
4952
and should be familiar to users of that module.
5053
"""
5154
content-type = "text/x-rst"
52-
55+
dependencies = [
56+
"certifi",
57+
"cftime",
58+
"numpy",
59+
]
60+
[project.urls]
61+
Documentation = "https://unidata.github.io/netcdf4-python/"
62+
Repository = "https://github.com/Unidata/netcdf4-python"
5363
[project.scripts]
5464
nc3tonc4 = "netCDF4.utils:nc3tonc4"
5565
nc4tonc3 = "netCDF4.utils:nc4tonc3"
5666
ncinfo = "netCDF4.utils:ncinfo"
5767

58-
[project.urls]
59-
Documentation = "https://unidata.github.io/netcdf4-python/"
60-
Repository = "https://github.com/Unidata/netcdf4-python"
61-
6268
[tool.setuptools.packages.find]
6369
where = ["src"]
6470

0 commit comments

Comments
 (0)