Skip to content

Commit 568451e

Browse files
committed
Adapt to pyproject.toml
1 parent bbd232a commit 568451e

File tree

2 files changed

+37
-38
lines changed

2 files changed

+37
-38
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "geojsoncontour"
7+
version = "0.5.0"
8+
authors = [
9+
{ name = "Bart Römgens", email = "[email protected]" },
10+
]
11+
license = { file = "LICENSE.md" }
12+
description = "Convert matplotlib contour plots to geojson"
13+
readme = "README.md"
14+
keywords = ["contour", "plot", "geojson", "pyplot", "matplotlib", "gis", "map"]
15+
requires-python = ">=3.9"
16+
classifiers = [
17+
"Development Status :: 4 - Beta",
18+
"Intended Audience :: Developers",
19+
"License :: OSI Approved :: MIT License",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
26+
]
27+
dependencies = [
28+
"geojson",
29+
"numpy",
30+
"matplotlib>=3.8",
31+
"xarray",
32+
]
33+
[project.urls]
34+
Repository = "http://github.com/bartromgens/geojsoncontour"
35+
36+
[tool.setuptools]
37+
packages = ["geojsoncontour", "geojsoncontour.utilities"]

setup.py

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)