-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 1.35 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-geojson-tiler"
version = "0.1.0"
description = "Beginner-friendly Python tool for chunking large GeoJSON datasets into XYZ tiles."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "SpatialWorkflowIo" },
]
keywords = ["geojson", "xyz", "tiles", "gis", "spatial", "web maps"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
[project.urls]
Homepage = "https://spatialworkflow.io/"
Documentation = "https://spatialworkflow.io/"
Source = "https://github.com/SpatialWorkflowIo/python-geojson-tiler"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
[project.scripts]
geojson-tiler = "geojson_tiler.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "--cov=geojson_tiler --cov-report=term-missing --cov-fail-under=100"
testpaths = ["tests"]
[tool.coverage.report]
show_missing = true
skip_covered = false