Added setup.py for the package
This commit is contained in:
parent
8ed26d4dd0
commit
ab19c1b8ed
@ -0,0 +1,40 @@
|
|||||||
|
"""
|
||||||
|
CartoDB Geocoder Python Library
|
||||||
|
|
||||||
|
See:
|
||||||
|
https://github.com/CartoDB/geocoder-api
|
||||||
|
"""
|
||||||
|
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='cartodb_geocoder',
|
||||||
|
|
||||||
|
version='0.0.1',
|
||||||
|
|
||||||
|
description='CartoDB Geocoder Python Library',
|
||||||
|
|
||||||
|
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',
|
||||||
|
|
||||||
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
||||||
|
|
||||||
|
extras_require={
|
||||||
|
'dev': ['unittest'],
|
||||||
|
'test': ['unittest'],
|
||||||
|
}
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user