forked from tilezen/mapbox-vector-tile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1008 Bytes
/
setup.py
File metadata and controls
38 lines (32 loc) · 1008 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
33
34
35
36
37
38
import io
from setuptools import setup, find_packages
with io.open('README.md') as readme_file:
long_description = readme_file.read()
def test_suite():
try:
import unittest2 as unittest
except:
import unittest
suite = unittest.TestLoader().discover("tests")
return suite
# This setup.py is kept for backward compatibility
# The main configuration is now in pyproject.toml
setup(name='mapbox-vector-tile-mappy',
version='1.0.10',
description=u"Mapbox Vector Tile",
long_description=long_description,
classifiers=[],
keywords='',
author=u"Harish Krishna",
author_email='harish.krsn@gmail.com',
packages=find_packages(),
url='https://github.com/Mappy/mapbox-vector-tile',
license='MIT',
zip_safe=False,
# test_suite="setup.test_suite", # Moved to pyproject.toml
install_requires=[
"protobuf>=3.20.3",
"shapely>=2.1.1",
"pyclipper>=1.3.0.post6"
]
)