mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
21 lines
570 B
Python
21 lines
570 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'
|
|
],
|
|
zip_safe=False)
|