41 lines
913 B
Python
41 lines
913 B
Python
"""
|
|
CartoDB Services Python Library
|
|
|
|
See:
|
|
https://github.com/CartoDB/geocoder-api
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='cartodb_services',
|
|
|
|
version='0.9.0',
|
|
|
|
description='CartoDB Services API Python Library',
|
|
|
|
url='https://github.com/CartoDB/dataservices-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',
|
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
|
|
|
extras_require={
|
|
'dev': ['unittest'],
|
|
'test': ['unittest', 'nose', 'mockredispy', 'mock'],
|
|
}
|
|
)
|