forked from eriky/ESClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (30 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from distutils.core import setup
from sys import version_info
with open('README.rst') as file:
long_description = file.read()
install_requires = ['requests']
if version_info < (2,7):
install_requires.append('argparse')
setup(name='ESClient',
version="0.5.6",
description='A lightweight Python client for ElasticSearch, including a dump and import tool for indexes',
author='Erik-Jan van Baaren',
author_email='[email protected]',
url='https://github.com/eriky/ESClient',
py_modules=['esclient'],
license='New BSD license',
keywords = ["elasticsearch"],
install_requires = install_requires,
scripts = ['bin/esdump', 'bin/esimport'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
],
long_description = long_description
)