forked from moss-xyz/matplotlib-map-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 836 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "matplotlib-map-utils"
version = "2.0.0"
authors = [
{ name="David Moss", email="davidmoss1221@gmail.com" },
]
description = "A suite of tools for creating maps in matplotlib"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.9.0",
"cartopy>=0.23.0",
"great-circle-calculator>=1.3.1"
]
[tool.setuptools.packages.find]
exclude = ["matplotlib_map_utils.scratch*"]
[project.urls]
"Homepage" = "https://github.com/moss-xyz/matplotlib-map-utils/"
"Bug Tracker" = "https://github.com/moss-xyz/matplotlib-map-utils/issues"