-
Notifications
You must be signed in to change notification settings - Fork 91
/
pyproject.toml
37 lines (33 loc) · 974 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
31
32
33
34
35
36
37
[build-system]
requires = [
"setuptools >= 74.1.2",
"pybind11 >= 2.13.5",
]
build-backend = "setuptools.build_meta"
[project]
name = "mapnik"
version = "4.0.3.beta"
description = "Python bindings for Mapnik"
license = { text = "GNU LESSER GENERAL PUBLIC LICENSE"}
keywords = ["mapnik", "beautiful maps", "cartography", "python-mapnik"]
classifiers = [
"Development Status :: 4 - Beta",
]
authors = [
{name= "Artem Pavlenko", email = "[email protected]"},
]
maintainers = [
{name= "Artem Pavlenko", email = "[email protected]"},
]
requires-python = ">= 3.8"
[project.urls]
Homepage = "https://mapnik.org"
Documentation = "https://github.com/mapnik/python-mapnik/wiki"
Repository = "https://github.com/mapnik/python-mapnik"
"Bug Tracker" = "https://github.com/mapnik/python-mapnik/issues"
Changelog = "https://github.com/mapnik/python-mapnik/blob/master/CHANGELOG.md"
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = [
"test/python_tests",
]