1
1
[build-system ]
2
+ build-backend = " setuptools.build_meta"
2
3
requires = [
3
- " Cython>=0.29" ,
4
- " oldest-supported-numpy" ,
5
- " setuptools>=61" ,
4
+ " Cython>=0.29" ,
5
+ " oldest-supported-numpy" ,
6
+ " setuptools>=61" ,
6
7
]
7
- build-backend = " setuptools.build_meta"
8
8
9
9
[project ]
10
- name = " netCDF4 "
10
+ name = " netcdf4 "
11
11
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" }
12
24
authors = [
13
25
{name = " Jeff Whitaker" , email = " jeffrey.s.whitaker@noaa.gov" },
14
26
]
15
27
requires-python = " >=3.7"
16
- keywords = [
17
- " numpy" , " netcdf" , " data" , " science" , " network" , " oceanography" ,
18
- " meteorology" , " climate" ,
19
- ]
20
- license = {text = " MIT" }
21
28
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 " ,
34
41
]
35
- dependencies = [
36
- " cftime" ,
37
- " certifi" ,
38
- " numpy" ,
42
+ dynamic = [
43
+ " version" ,
39
44
]
40
- dynamic = [" version" ]
41
-
42
45
[project .readme ]
43
46
text = """ \
44
47
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,
49
52
and should be familiar to users of that module.
50
53
"""
51
54
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"
53
63
[project .scripts ]
54
64
nc3tonc4 = " netCDF4.utils:nc3tonc4"
55
65
nc4tonc3 = " netCDF4.utils:nc4tonc3"
56
66
ncinfo = " netCDF4.utils:ncinfo"
57
67
58
- [project .urls ]
59
- Documentation = " https://unidata.github.io/netcdf4-python/"
60
- Repository = " https://github.com/Unidata/netcdf4-python"
61
-
62
68
[tool .setuptools .packages .find ]
63
69
where = [" src" ]
64
70
0 commit comments