Files
opensearch-pyd/setup.py
T

71 lines
2.1 KiB
Python
Raw Normal View History

2013-05-01 16:37:32 +02:00
# -*- coding: utf-8 -*-
from os.path import join, dirname
2013-09-23 14:33:23 +02:00
from setuptools import setup, find_packages
2013-08-28 19:11:28 +02:00
import sys
2013-05-01 16:37:32 +02:00
2018-11-16 09:42:11 -07:00
VERSION = (6, 3, 1)
2013-05-01 16:37:32 +02:00
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README'))
2013-05-01 16:37:32 +02:00
long_description = f.read().strip()
f.close()
install_requires = [
2018-06-19 12:55:48 -06:00
'urllib3>=1.21.1',
2013-05-01 16:37:32 +02:00
]
2013-05-06 16:34:33 +02:00
tests_require = [
2017-05-15 10:36:51 -06:00
'requests>=2.0.0, <3.0.0',
2013-05-01 16:37:32 +02:00
'nose',
'coverage',
2013-05-02 21:22:47 +02:00
'mock',
'pyaml',
'nosexcover'
2013-05-01 16:37:32 +02:00
]
2013-08-28 19:11:28 +02:00
# use external unittest for 2.6
if sys.version_info[:2] == (2, 6):
2014-06-12 01:49:57 +02:00
install_requires.append('unittest2')
2013-08-28 19:11:28 +02:00
2013-05-01 16:37:32 +02:00
setup(
name = 'elasticsearch',
description = "Python client for Elasticsearch",
2013-05-06 16:34:33 +02:00
license="Apache License, Version 2.0",
2015-05-02 16:42:25 +02:00
url = "https://github.com/elastic/elasticsearch-py",
2013-05-01 16:37:32 +02:00
long_description = long_description,
version = __versionstr__,
2018-06-19 12:55:48 -06:00
author = "Honza Král, Nick Lang",
author_email = "honza.kral@gmail.com, nick@nicklang.com",
2013-09-23 14:33:23 +02:00
packages=find_packages(
where='.',
2013-09-23 23:27:39 +02:00
exclude=('test_elasticsearch*', )
2013-09-23 14:33:23 +02:00
),
2013-05-01 16:37:32 +02:00
classifiers = [
2015-05-02 16:42:25 +02:00
"Development Status :: 5 - Production/Stable",
2013-05-06 16:34:33 +02:00
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
2013-05-01 16:37:32 +02:00
"Operating System :: OS Independent",
2013-05-06 16:34:33 +02:00
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
2013-05-06 16:34:33 +02:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
2014-07-02 18:03:20 +02:00
"Programming Language :: Python :: 3.4",
2017-05-19 12:48:41 -07:00
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
2013-05-06 16:34:33 +02:00
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
2013-05-01 16:37:32 +02:00
],
install_requires=install_requires,
test_suite='test_elasticsearch.run_tests.run_all',
2013-05-06 16:34:33 +02:00
tests_require=tests_require,
extras_require={
2018-10-31 12:07:38 -06:00
'develop': tests_require + ["sphinx<1.7", "sphinx_rtd_theme"],
'requests': ['requests>=2.4.0, <3.0.0']
},
2013-05-01 16:37:32 +02:00
)