-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.43 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
# Allows pypi uploads. ref: https://github.com/ofek/hatch-vcs/discussions/12
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[project]
name = "tilekiln"
dynamic = ["version"]
description = "A set of command-line utilities to generate and serve Mapbox Vector Tiles (MVTs)"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10, <4"
authors = [
{ name = "Paul Norman", email = "[email protected]" },
]
keywords = [
"mvt",
"openstreetmap",
"osm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"Click",
"fastapi",
"fs",
"Jinja2",
"pmtiles",
"prometheus_client",
"psycopg",
"psycopg_pool",
"pyyaml",
"tqdm",
"uvicorn",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.scripts]
tilekiln = "tilekiln.main:cli"
[project.urls]
"Bug Reports" = "https://github.com/pnorman/tilekiln/issues"
Homepage = "https://github.com/pnorman/tilekiln"
Source = "https://github.com/pnorman/tilekiln/"
[tool.hatch.build.targets.sdist]
include = [
"/tilekiln",
]