Skip to content

Commit 4aaacf5

Browse files

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

pyproject.toml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ requires = [
66
"setuptools>=61",
77
]
88

9+
[project.readme]
10+
text = """\
11+
netCDF version 4 has many features not found in earlier versions of the library,
12+
such as hierarchical groups, zlib compression, multiple unlimited dimensions,
13+
and new data types. It is implemented on top of HDF5. This module implements
14+
most of the new features, and can read and write netCDF files compatible with
15+
older versions of the library. The API is modelled after Scientific.IO.NetCDF,
16+
and should be familiar to users of that module.
17+
"""
18+
content-type = "text/x-rst"
19+
920
[project]
1021
name = "netcdf4"
1122
description = "Provides an object-oriented python interface to the netCDF version 4 library"
@@ -40,16 +51,7 @@ classifiers = [
4051
dynamic = [
4152
"version",
4253
]
43-
[project.readme]
44-
text = """\
45-
netCDF version 4 has many features not found in earlier versions of the library,
46-
such as hierarchical groups, zlib compression, multiple unlimited dimensions,
47-
and new data types. It is implemented on top of HDF5. This module implements
48-
most of the new features, and can read and write netCDF files compatible with
49-
older versions of the library. The API is modelled after Scientific.IO.NetCDF,
50-
and should be familiar to users of that module.
51-
"""
52-
content-type = "text/x-rst"
54+
5355
dependencies = [
5456
"certifi",
5557
"cftime",
@@ -68,7 +70,6 @@ Repository = "https://github.com/Unidata/netcdf4-python"
6870
nc3tonc4 = "netCDF4.utils:nc3tonc4"
6971
nc4tonc3 = "netCDF4.utils:nc4tonc3"
7072
ncinfo = "netCDF4.utils:ncinfo"
71-
7273
[tool.setuptools.packages.find]
7374
where = ["src"]
7475

0 commit comments

Comments
 (0)