-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.6 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = [
"setuptools",
"versioneer[toml]==0.29",
# tomli is used by versioneer
"tomli; python_version < '3.11'",
# ninja needs to be provided by the environment
"cmake",
]
build-backend = "setuptools.build_meta"
[project]
name = "pymgl"
dynamic = ["version"]
authors = [{ name = "Brendan C. Ward", email = "[email protected]" }]
license = { file = "LICENSE" }
description = "Python wrapper for MapLibre Native"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.9"
dependencies = ["packaging"]
[project.optional-dependencies]
dev = ["numpy", "Pillow", "pre-commit", "ruff", "setuptools", "versioneer"]
test = [
"numpy",
"Pillow",
"pixelmatch",
"python-dotenv",
"pytest",
"pytest-cov",
]
bench = [
"numpy",
"Pillow",
"pixelmatch",
"python-dotenv",
"pytest",
"pytest-benchmark",
"requests",
]
slownetwork = ["poorconn"]
[project.urls]
Home = "https://github.com/brendan-ward/pymgl"
Repository = "https://github.com/brendan-ward/pymgl"
[tool.setuptools]
packages = ["pymgl", "pymgl.tests", "pymgl.tests.fixtures"]
[tool.uv]
package = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pymgl/_version.py"
versionfile_build = "pymgl/_version.py"
parentdir_prefix = "pymgl-"
tag_prefix = "v"
[tool.pytest.ini_options]
testpaths = ["pymgl/tests"]