@@ -6,6 +6,17 @@ requires = [
6
6
" setuptools>=61" ,
7
7
]
8
8
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
+
9
20
[project ]
10
21
name = " netcdf4"
11
22
description = " Provides an object-oriented python interface to the netCDF version 4 library"
@@ -41,16 +52,7 @@ classifiers = [
41
52
dynamic = [
42
53
" version" ,
43
54
]
44
- [project .readme ]
45
- text = """ \
46
- netCDF version 4 has many features not found in earlier versions of the library,
47
- such as hierarchical groups, zlib compression, multiple unlimited dimensions,
48
- and new data types. It is implemented on top of HDF5. This module implements
49
- most of the new features, and can read and write netCDF files compatible with
50
- older versions of the library. The API is modelled after Scientific.IO.NetCDF,
51
- and should be familiar to users of that module.
52
- """
53
- content-type = " text/x-rst"
55
+
54
56
dependencies = [
55
57
" certifi" ,
56
58
" cftime" ,
@@ -63,7 +65,6 @@ Repository = "https://github.com/Unidata/netcdf4-python"
63
65
nc3tonc4 = " netCDF4.utils:nc3tonc4"
64
66
nc4tonc3 = " netCDF4.utils:nc4tonc3"
65
67
ncinfo = " netCDF4.utils:ncinfo"
66
-
67
68
[tool .setuptools .packages .find ]
68
69
where = [" src" ]
69
70
0 commit comments