-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
53 lines (47 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
__name__ = 'superelasticsearch'
__version__ = '0.1.1'
__author__ = 'Wingify Engineering'
__author_email__ = '[email protected]'
long_description = '''superelasticsearch is utility library that extends a
particular version of elasticsearch library to provide some more utility
functions on top of it to make using Elasticsearch even easier.
SuperElasticsearch provides a few additional APIs that are sugar coated to
simplify using Elasticsearch in Python. These additional APIs are listed as
follows:
1. Iterated Search
2. Simple Bulk API
Read more with examples here: https://github.com/wingify/superelasticsearch
'''
setup(
name=__name__,
version=__version__,
author=__author__,
author_email=__author_email__,
description=('An extended version of the official '
'Elasticsearch Python client.'),
long_description=long_description,
packages=find_packages(exclude=['tests']),
install_requires = [
'elasticsearch',
],
include_package_data = True,
zip_safe = False,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
test_suite='nose.collector',
tests_require=[
'nose',
'mock',
'datadiff',
]
)