-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 1.02 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
[build-system]
requires = ["setuptools>=59.0"]
build-backend = "setuptools.build_meta"
[project]
name = "keops-vt"
version = "1.0.0"
authors = [
{ name="Fran Martín", email="[email protected]" },
]
description = "CLI tool for custom edition and management of Mapbox Vector Tiles in MBTiles format"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["mbtiles", "python", "vector-tiles"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mapbox-vector-tile~=1.2.1",
"protobuf~=3.19.4",
"geopandas~=0.12.1",
"click~=8.1.3",
"geojson~=2.5.0",
"setuptools~=58.1.0",
"docker~=6.0.1",
"mkdocs~=1.4.1",
"mkdocs-material~=9.1.0",
"prettytable~=3.6.0",
"halo~=0.0.31"
]
[project.scripts]
keops = "keops.main:main_group"
[project.urls]
"Homepage" = "https://github.com/fmariv/keops-vt"
"Bug Tracker" = "https://github.com/fmariv/keops-vt/issues"