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
|
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='0.5.0',
description=u"Mapbox Vector Tile",
long_description=long_description,
classifiers=[],
keywords='',
author=u"Harish Krishna",
author_email='harish.krsn@gmail.com',
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"]
)
|