forked from tilezen/mapbox-vector-tile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 849 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mapbox-vector-tile-mappy"
version = "1.0.15"
description = "Mapbox Vector Tile - Python library for encoding and decoding Mapbox vector tiles"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
]
keywords = ["mapbox", "vector", "tile", "gis", "geospatial"]
authors = [{name = "Mappy Team", email = "dt.lbs.map@mappy.com"}]
license = "MIT"
urls = {Homepage = "http://fr.mappy.com/"}
requires-python = ">= 3.11"
dependencies = [
"protobuf==4.21",
"shapely",
"pyclipper",
"setuptools>=80.9.0",
"wheel>=0.40.0",
"build>=1.0.0",
"twine>=4.0.0"
]
[tool.setuptools.packages.find]
where = [""]
include = ["mapbox_vector_tile*"]
exclude = ["tests*"]