forked from tilezen/mapbox-vector-tile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 922 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
32
33
34
35
36
37
38
39
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
setup(name='mapbox-vector-tile',
version='1.0.0',
description=u"Mapbox Vector Tile",
long_description=long_description,
classifiers=[],
keywords='',
author=u"Harish Krishna",
author_email='[email protected]',
url='https://github.com/tilezen/mapbox-vector-tile',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite="setup.test_suite",
install_requires=[
"setuptools",
"protobuf",
"shapely",
"future",
"pyclipper"
]
)