forked from pyelasticsearch/pyelasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (61 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import codecs
import re
from os.path import join, dirname
# Prevent spurious errors during `python setup.py test`, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup, find_packages
def read(filename):
return codecs.open(join(dirname(__file__), filename), 'r').read()
def find_version(file_path):
version_file = read(file_path)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError('Unable to find version string.')
setup(
name='pyelasticsearch',
version=find_version(join('pyelasticsearch', '__init__.py')),
description='Flexible, high-scale API to elasticsearch',
long_description=read('README.rst') + '\n\n' +
'\n'.join(read(join('docs', 'source', 'changelog.rst'))
.splitlines()[1:]),
author='Robert Eanes',
author_email='python@robsinbox.com',
maintainer='Erik Rose',
maintainer_email='erik@mozilla.com',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
],
requires=[ # Needed?
'six',
'requests(>=1.0,<2.0)',
'simplejson(>=2.1.0)',
],
install_requires=[
'requests>=1.0,<2.0',
'simplejson>=2.1.0',
'six'
],
tests_require=['mock', 'nose>=1.2.1'],
test_suite='nose.collector',
url='http://github.com/rhec/pyelasticsearch'
)