Bumps [numpy](https://github.com/numpy/numpy) from 1.11.0 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/HOWTO_RELEASE.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.11.0...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
|
|
"""
|
|
CartoDB Spatial Analysis Python Library
|
|
See:
|
|
https://github.com/CartoDB/crankshaft
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='crankshaft',
|
|
|
|
version='0.0.0',
|
|
|
|
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 :: 3 - Alpha',
|
|
'Intended Audience :: Mapping comunity',
|
|
'Topic :: Maps :: Mapping Tools',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python',
|
|
],
|
|
|
|
keywords='maps mapping tools spatial analysis geostatistics',
|
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
|
|
|
extras_require={
|
|
'dev': ['unittest'],
|
|
'test': ['unittest', 'nose', 'mock'],
|
|
},
|
|
|
|
# The choice of component versions is dictated by what's
|
|
# provisioned in the production servers.
|
|
# IMPORTANT NOTE: please don't change this line. Instead issue a ticket to systems for evaluation.
|
|
# NOTE2: For Bionic, .travis.yml is editing this line to match dependencies
|
|
install_requires=['joblib==0.9.4', 'numpy==1.22.0', 'scipy==0.17.0', 'pysal==1.14.3', 'scikit-learn==0.17.0'],
|
|
|
|
requires=['pysal', 'numpy', 'sklearn'],
|
|
|
|
test_suite='test'
|
|
)
|