49 lines
1.0 KiB
Python
49 lines
1.0 KiB
Python
|
|
"""
|
|
CartoDB Spatial Analysis Python Library
|
|
See:
|
|
https://github.com/CartoDB/crankshaft
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
REQUIRES = [] # ['pysal','numpy']
|
|
|
|
setup(
|
|
name='crankshaft',
|
|
|
|
version='0.0.01',
|
|
|
|
description='CartoDB Spatial Analysis Python Library',
|
|
|
|
url='https://github.com/CartoDB/crankshaft',
|
|
|
|
author='Data Services Team - CartoDB',
|
|
author_email='dataservices@cartodb.com',
|
|
|
|
license='MIT',
|
|
|
|
classifiers=[
|
|
'Development Status :: 1 - Planning',
|
|
'Intended Audience :: Mapping comunity',
|
|
'Topic :: Maps :: Mapping Tools',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2.7',
|
|
],
|
|
|
|
keywords='maps mapping tools spatial analysis geostatistics',
|
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
|
|
|
extras_require={
|
|
'dev': ['unittest'],
|
|
'test': ['unittest', 'nose', 'mock'],
|
|
},
|
|
|
|
# install_requires=REQUIRES,
|
|
|
|
# requires=REQUIRES,
|
|
|
|
test_suite='test'
|
|
)
|