Skip to content

Commit

Permalink
pyproject.toml: take some changes from https://github.com/avalentino/…
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Dec 8, 2023
1 parent feb8bed commit 0be30ab
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions swig/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,39 @@ build-backend = "setuptools.build_meta"

[project]
name = "GDAL"
dynamic = ["readme", "version", "scripts", "optional-dependencies"]
dynamic = ["version", "scripts"]
authors = [
{name = "Frank Warmerdam"},
{name = "Howard Butler"},
{name = "Even Rouault"},
]
maintainers = [
{name = "GDAL contributors"},
{name = "GDAL contributors", email = "gdal-dev@lists.osgeo.org"},
]
description = "GDAL: Geospatial Data Abstraction Librarys"
description = "GDAL: Geospatial Data Abstraction Library"
readme = "README.rst"
keywords = ["gis", "raster", "vector"]
license = {text = "MIT"}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: C',
'Programming Language :: C++',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Information Analysis',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: C",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
]

requires-python = ">=3.8"

[project.optional-dependencies]
numpy = ['numpy>1.0.0']

[project.urls]
Homepage = "https://gdal.org"
Documentation = "https://gdal.org"
Repository = "https://github.com/OSGeo/GDAL.git"
Changelog = "https://github.com/OSGeo/gdal/blob/master/NEWS.md"
Issues = "https://github.com/OSGeo/gdal/issues"

0 comments on commit 0be30ab

Please sign in to comment.