forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml.setuptools_gte_77
More file actions
58 lines (54 loc) · 1.8 KB
/
pyproject.toml.setuptools_gte_77
File metadata and controls
58 lines (54 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=77.0.3",
"wheel",
"oldest-supported-numpy; python_version=='3.8'",
"numpy >=2.0.0rc1; python_version>='3.9'"]
build-backend = "setuptools.build_meta"
[project]
name = "GDAL"
dynamic = ["version", "scripts"]
authors = [
{name = "Frank Warmerdam"},
{name = "Howard Butler"},
{name = "Even Rouault"},
]
maintainers = [
{name = "GDAL contributors", email = "gdal-dev@lists.osgeo.org"},
]
description = "GDAL: Geospatial Data Abstraction Library"
readme = "README.rst"
keywords = ["gis", "raster", "vector"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"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"
[tool.docstub.types]
datetime = "datetime.datetime"
CoordinateTransform = "osgeo.osr.CoordinateTransform"
CoordinateTransformation = "osgeo.osr.CoordinateTransformation"
Dataset = "osgeo.gdal.Dataset"
Driver = "osgeo.gdal.Driver"
Feature = "osgeo.ogr.Feature"
FieldDomain = "osgeo.ogr.FieldDomain"
GeomFieldDefn = "osgeo.ogr.GeomFieldDefn"
Layer = "osgeo.ogr.Layer"
StyleTable = "osgeo.ogr.StyleTable"
SpatialReference = "osgeo.osr.SpatialReference"
Transformer = "osgeo.gdal.Transformer"