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
- authors = [
13
- {
name =
" Jeff Whitaker" ,
email =
" [email protected] " },
14
- ]
15
- requires-python = " >=3.7"
16
- keywords = [
17
- " numpy" , " netcdf" , " data" , " science" , " network" , " oceanography" ,
18
- " meteorology" , " climate" ,
19
- ]
20
- license = {text = " MIT" }
21
- 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" ,
34
- ]
35
- dependencies = [
36
- " cftime" ,
37
- " certifi" ,
38
- " numpy" ,
39
- ]
40
- dynamic = [" version" ]
41
-
42
12
[project .readme ]
43
13
text = """ \
44
14
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.
50
20
"""
51
21
content-type = " text/x-rst"
52
22
23
+ keywords = [
24
+ " climate" ,
25
+ " data" ,
26
+ " meteorology" ,
27
+ " netcdf" ,
28
+ " network" ,
29
+ " numpy" ,
30
+ " oceanography" ,
31
+ " science" ,
32
+ ]
33
+ license = {text = " MIT" }
34
+ authors = [
35
+ {
name =
" Jeff Whitaker" ,
email =
" [email protected] " },
36
+ ]
37
+ requires-python = " >=3.7"
38
+ classifiers = [
39
+ " Development Status :: 3 - Alpha" ,
40
+ " Intended Audience :: Science/Research" ,
41
+ " License :: OSI Approved :: MIT License" ,
42
+ " Operating System :: OS Independent" ,
43
+ " Programming Language :: Python :: 3 :: Only" ,
44
+ " Programming Language :: Python :: 3.7" ,
45
+ " Programming Language :: Python :: 3.8" ,
46
+ " Programming Language :: Python :: 3.9" ,
47
+ " Programming Language :: Python :: 3.10" ,
48
+ " Programming Language :: Python :: 3.11" ,
49
+ " Topic :: Software Development :: Libraries :: Python Modules" ,
50
+ " Topic :: System :: Archiving :: Compression" ,
51
+ ]
52
+ dynamic = [
53
+ " version" ,
54
+ ]
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