-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (28 loc) · 808 Bytes
/
setup.py
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
from setuptools import find_packages, setup
packages = (
'vt2pbf',
'vt2pbf.mapbox',
'vt2pbf.mapbox.protobuf_3',
'vt2pbf.mapbox.protobuf_4',
'vt2pbf.service',
)
requires = (
'protobuf>=3.6.0,<5',
)
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='vt2pbf',
version='0.1.5',
description='Python library for encoding mapbox vector tiles into tile_pbf',
long_description=long_description,
long_description_content_type='text/markdown',
author='DenysMoskalenko',
license='MIT',
url='https://github.com/DenysMoskalenko/vt2pbf',
packages=find_packages(include=packages),
install_requires=requires,
setup_requires=['pytest-runner'],
tests_require=['pytest>=7.1.1<8'],
test_suite='tests',
)