|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=42", |
| 4 | + "wheel" |
| 5 | +] |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "basemap_data_hires" |
| 10 | +version = "1.3.2" |
| 11 | +description = "High-resolution data assets for matplotlib basemap" |
| 12 | +readme = "README.md" |
| 13 | +requires-python = ">=3.9" # Updated to match main package |
| 14 | +license = {text = "GNU Lesser General Public License v3 or later (LGPLv3+)"} |
| 15 | +authors = [ |
| 16 | + { name = "Jeff Whitaker", email = "[email protected]"} |
| 17 | +] |
| 18 | +maintainers = [ |
| 19 | + { name = "Víctor Molina García", email = "[email protected]"} |
| 20 | +] |
| 21 | +keywords = ["GIS", "maps", "plots"] |
| 22 | +classifiers = [ |
| 23 | + "Development Status :: 5 - Production/Stable", |
| 24 | + "Intended Audience :: Education", |
| 25 | + "Intended Audience :: Science/Research", |
| 26 | + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", |
| 27 | + "Operating System :: OS Independent", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.9", |
| 30 | + "Programming Language :: Python :: 3.10", |
| 31 | + "Programming Language :: Python :: 3.11", |
| 32 | + "Programming Language :: Python :: 3.12", |
| 33 | + "Topic :: Scientific/Engineering :: Visualization", |
| 34 | + "Topic :: Software Development :: Libraries :: Python Modules" |
| 35 | +] |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +Homepage = "https://matplotlib.org/basemap" |
| 39 | +Documentation = "https://matplotlib.org/basemap/" |
| 40 | +Repository = "https://github.com/matplotlib/basemap" |
| 41 | +"Bug Tracker" = "https://github.com/matplotlib/basemap/issues" |
| 42 | + |
| 43 | +[tool.setuptools] |
| 44 | +packages = ["mpl_toolkits.basemap_data"] |
| 45 | +package-dir = {"" = "src"} |
| 46 | +license-files = [ |
| 47 | + "COPYING", |
| 48 | + "COPYING.LESSER" |
| 49 | +] |
| 50 | + |
| 51 | +[tool.setuptools.package-data] |
| 52 | +"mpl_toolkits.basemap_data" = [ |
| 53 | + # This will be populated from build.py |
| 54 | + "data/*" |
| 55 | +] |
| 56 | + |
| 57 | +[tool.setuptools.sdist] |
| 58 | +formats = ["zip"] |
| 59 | + |
| 60 | +[tool.setuptools.bdist-wheel] |
| 61 | +universal = true |
0 commit comments