Skip to content

Commit c0087d1

Browse files
committed
update pyproject.toml
1 parent 5820b79 commit c0087d1

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

packages/basemap/pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,39 @@ build-backend = "setuptools.build_meta"
1414
name = "basemap"
1515
dynamic = ["version"]
1616
description = "Plot data on map projections with matplotlib"
17+
readme = "README.md"
1718
requires-python = ">=3.9"
19+
license = {text = "MIT"}
20+
authors = [
21+
{name = "Jeff Whitaker", email = "jeffrey.s.whitaker@noaa.gov"}
22+
]
23+
maintainers = [
24+
{name = "The Matplotlib Developers"}
25+
]
26+
keywords = ["matplotlib", "plotting", "map", "projection"]
27+
classifiers = [
28+
"Development Status :: 5 - Production/Stable",
29+
"Intended Audience :: Science/Research",
30+
"License :: OSI Approved :: MIT License",
31+
"Programming Language :: Python :: 3",
32+
"Programming Language :: Python :: 3.9",
33+
"Programming Language :: Python :: 3.10",
34+
"Programming Language :: Python :: 3.11",
35+
"Programming Language :: Python :: 3.12",
36+
"Topic :: Scientific/Engineering :: Visualization",
37+
]
1838
dependencies = [
1939
"numpy>=1.21.4",
2040
"matplotlib>=3.4.0",
2141
"pyproj>=3.0.0"
2242
]
43+
44+
[project.urls]
45+
Homepage = "https://matplotlib.org/basemap"
46+
Documentation = "https://matplotlib.org/basemap/api/basemap_api.html"
47+
Repository = "https://github.com/matplotlib/basemap"
48+
"Bug Tracker" = "https://github.com/matplotlib/basemap/issues"
49+
50+
[tool.setuptools]
51+
packages = ["mpl_toolkits.basemap"]
52+
package-dir = {"" = "src"}

0 commit comments

Comments
 (0)