eland/setup.py
Ed Savage d9ff31adc1 Corrected installation requirements
Added modin 0.6.1 and py 1.8.0 to installation requirements
2019-10-09 11:55:52 +01:00

23 lines
605 B
Python

from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='eland',
version='0.1',
description='Python elasticsearch client to analyse, explore and manipulate data that resides in elasticsearch',
url='http://github.com/elastic/eland',
author='Stephen Dodson',
author_email='sjd171@gmail.com',
license='ELASTIC LICENSE',
packages=['eland'],
install_requires=[
'elasticsearch',
'elasticsearch_dsl',
'pandas',
'modin',
'py'
],
zip_safe=False)