Files
opensearch-pyd/setup.py
T

75 lines
2.5 KiB
Python
Raw Normal View History

2013-05-01 16:37:32 +02:00
# -*- coding: utf-8 -*-
2020-04-23 11:22:08 -05:00
# Licensed to Elasticsearch B.V under one or more agreements.
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information
2013-05-01 16:37:32 +02:00
from os.path import join, dirname
2013-09-23 14:33:23 +02:00
from setuptools import setup, find_packages
2013-05-01 16:37:32 +02:00
2020-05-19 12:59:40 -05:00
VERSION = (7, 9, 0)
2013-05-01 16:37:32 +02:00
__version__ = VERSION
2020-05-19 12:59:40 -05:00
__versionstr__ = "7.9.0a1"
2013-05-01 16:37:32 +02:00
2020-02-21 10:34:08 -06:00
with open(join(dirname(__file__), "README")) as f:
long_description = f.read().strip()
2013-05-01 16:37:32 +02:00
2020-05-14 16:09:24 -05:00
install_requires = [
"urllib3>=1.21.1",
"certifi",
]
2013-05-06 16:34:33 +02:00
tests_require = [
2019-03-29 09:27:59 -06:00
"requests>=2.0.0, <3.0.0",
"coverage",
"mock",
2020-02-21 10:34:08 -06:00
"pyyaml",
2020-05-14 16:09:24 -05:00
"pytest",
"pytest-cov",
2013-05-01 16:37:32 +02:00
]
2020-05-13 13:20:15 -05:00
async_require = ["aiohttp>=3,<4", "yarl"]
2013-05-01 16:37:32 +02:00
2019-12-17 22:15:52 +01:00
docs_require = ["sphinx<1.7", "sphinx_rtd_theme"]
generate_require = ["black", "jinja2"]
2013-05-01 16:37:32 +02:00
setup(
2019-03-29 09:27:59 -06:00
name="elasticsearch",
description="Python client for Elasticsearch",
2020-02-21 10:34:08 -06:00
license="Apache-2.0",
2019-03-29 09:27:59 -06:00
url="https://github.com/elastic/elasticsearch-py",
long_description=long_description,
2020-02-21 10:34:08 -06:00
long_description_content_type="text/x-rst",
2019-03-29 09:27:59 -06:00
version=__versionstr__,
author="Honza Král, Nick Lang",
author_email="honza.kral@gmail.com, nick@nicklang.com",
2020-02-21 10:34:08 -06:00
maintainer="Seth Michael Larson",
maintainer_email="seth.larson@elastic.co",
2019-03-29 09:27:59 -06:00
packages=find_packages(where=".", exclude=("test_elasticsearch*",)),
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.7",
2013-05-06 16:34:33 +02:00
"Programming Language :: Python :: 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",
2019-10-30 02:37:50 +01:00
"Programming Language :: Python :: 3.7",
2019-11-14 09:17:45 +01:00
"Programming Language :: Python :: 3.8",
2020-07-01 12:42:34 -05:00
"Programming Language :: Python :: 3.9",
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
],
2020-02-21 10:34:08 -06:00
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
2013-05-01 16:37:32 +02:00
install_requires=install_requires,
2019-03-29 09:27:59 -06:00
test_suite="test_elasticsearch.run_tests.run_all",
2013-05-06 16:34:33 +02:00
tests_require=tests_require,
extras_require={
2019-12-17 22:15:52 +01:00
"develop": tests_require + docs_require + generate_require,
"docs": docs_require,
2019-03-29 09:27:59 -06:00
"requests": ["requests>=2.4.0, <3.0.0"],
2020-05-13 13:20:15 -05:00
"async": async_require,
},
2013-05-01 16:37:32 +02:00
)