dataservices-api/server/lib/python/cartodb_services/setup.py

41 lines
909 B
Python
Raw Normal View History

2015-11-10 20:48:39 +08:00
"""
CartoDB Services Python Library
2015-11-10 20:48:39 +08:00
See:
https://github.com/CartoDB/geocoder-api
"""
from setuptools import setup, find_packages
setup(
name='cartodb_services',
2015-11-10 20:48:39 +08:00
version='0.1.0',
2015-11-10 20:48:39 +08:00
description='CartoDB Services API Python Library',
2015-11-10 20:48:39 +08:00
url='https://github.com/CartoDB/geocoder-api',
author='Data Services Team - CartoDB',
author_email='dataservices@cartodb.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Mapping comunity',
'Topic :: Maps :: Mapping Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='maps api mapping tools geocoder routing',
2015-11-10 20:48:39 +08:00
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
extras_require={
'dev': ['unittest'],
2015-11-12 01:46:46 +08:00
'test': ['unittest', 'nose', 'mockredispy', 'mock'],
2015-11-10 20:48:39 +08:00
}
)