11[build-system ]
2+ build-backend = " setuptools.build_meta"
23requires = [
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 "
1111description = " Provides an object-oriented python interface to the netCDF version 4 library"
12- authors = [
13- {name = " Jeff Whitaker" , email = " jeffrey.s.whitaker@noaa.gov" },
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-
4212[project .readme ]
4313text = """ \
4414netCDF 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.
5020"""
5121content-type = " text/x-rst"
5222
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 = " jeffrey.s.whitaker@noaa.gov" },
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"
5363[project .scripts ]
5464nc3tonc4 = " netCDF4.utils:nc3tonc4"
5565nc4tonc3 = " netCDF4.utils:nc4tonc3"
5666ncinfo = " 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 ]
6369where = [" src" ]
6470
0 commit comments