|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=77.0.3", |
| 3 | + "wheel", |
| 4 | + "oldest-supported-numpy; python_version=='3.8'", |
| 5 | + "numpy >=2.0.0rc1; python_version>='3.9'"] |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "GDAL" |
| 10 | +dynamic = ["version", "scripts"] |
| 11 | +authors = [ |
| 12 | + {name = "Frank Warmerdam"}, |
| 13 | + {name = "Howard Butler"}, |
| 14 | + {name = "Even Rouault"}, |
| 15 | +] |
| 16 | +maintainers = [ |
| 17 | + {name = "GDAL contributors", email = " [email protected]"}, |
| 18 | +] |
| 19 | +description = "GDAL: Geospatial Data Abstraction Library" |
| 20 | +readme = "README.rst" |
| 21 | +keywords = ["gis", "raster", "vector"] |
| 22 | +license = "MIT" |
| 23 | +classifiers = [ |
| 24 | + "Development Status :: 5 - Production/Stable", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "Intended Audience :: Science/Research", |
| 27 | + "Operating System :: OS Independent", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: C", |
| 30 | + "Programming Language :: C++", |
| 31 | + "Topic :: Scientific/Engineering :: GIS", |
| 32 | + "Topic :: Scientific/Engineering :: Information Analysis", |
| 33 | +] |
| 34 | +requires-python = ">=3.8" |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +numpy = ['numpy>1.0.0'] |
| 38 | + |
| 39 | +[project.urls] |
| 40 | +Homepage = "https://gdal.org" |
| 41 | +Documentation = "https://gdal.org" |
| 42 | +Repository = "https://github.com/OSGeo/GDAL.git" |
| 43 | +Changelog = "https://github.com/OSGeo/gdal/blob/master/NEWS.md" |
| 44 | +Issues = "https://github.com/OSGeo/gdal/issues" |
0 commit comments