2013-05-01 16:37:32 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2021-08-06 12:59:39 +05:30
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
#
|
|
|
|
|
# The OpenSearch Contributors require contributions made to
|
|
|
|
|
# this file be licensed under the Apache-2.0 license or a
|
|
|
|
|
# compatible open source license.
|
|
|
|
|
#
|
|
|
|
|
# Modifications Copyright OpenSearch Contributors. See
|
|
|
|
|
# GitHub history for details.
|
|
|
|
|
#
|
2020-07-02 13:15:25 -05:00
|
|
|
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
|
|
|
# license agreements. See the NOTICE file distributed with
|
|
|
|
|
# this work for additional information regarding copyright
|
|
|
|
|
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
|
|
|
# the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
|
# not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
|
# under the License.
|
2020-04-23 11:22:08 -05:00
|
|
|
|
2020-10-12 16:42:23 -05:00
|
|
|
import re
|
2021-01-13 14:21:04 -06:00
|
|
|
from os.path import abspath, dirname, join
|
|
|
|
|
|
|
|
|
|
from setuptools import find_packages, setup
|
2013-05-01 16:37:32 +02:00
|
|
|
|
2021-09-17 02:21:57 +05:30
|
|
|
package_name = "opensearch-py"
|
2020-10-12 16:42:23 -05:00
|
|
|
base_dir = abspath(dirname(__file__))
|
2013-05-01 16:37:32 +02:00
|
|
|
|
2021-09-17 02:21:57 +05:30
|
|
|
with open(join(base_dir, package_name.replace("-", ""), "_version.py")) as f:
|
2020-10-12 16:42:23 -05:00
|
|
|
package_version = re.search(
|
|
|
|
|
r"__versionstr__\s+=\s+[\"\']([^\"\']+)[\"\']", f.read()
|
|
|
|
|
).group(1)
|
|
|
|
|
|
2021-08-05 17:52:08 +05:30
|
|
|
with open(join(base_dir, "README.md")) as f:
|
2020-02-21 10:34:08 -06:00
|
|
|
long_description = f.read().strip()
|
2013-05-01 16:37:32 +02:00
|
|
|
|
2021-09-18 02:07:16 +05:30
|
|
|
module_dir = package_name.replace("-", "")
|
2020-10-12 16:42:23 -05:00
|
|
|
packages = [
|
|
|
|
|
package
|
2021-09-16 14:59:29 +05:30
|
|
|
for package in find_packages(where=".", exclude=("test_opensearchpy*",))
|
2021-09-18 02:07:16 +05:30
|
|
|
if package == module_dir or package.startswith(module_dir + ".")
|
2020-10-12 16:42:23 -05:00
|
|
|
]
|
|
|
|
|
|
2020-05-14 16:09:24 -05:00
|
|
|
install_requires = [
|
2020-10-13 15:18:07 -05:00
|
|
|
"urllib3>=1.21.1, <2",
|
2020-05-14 16:09:24 -05:00
|
|
|
"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-10-13 15:18:07 -05:00
|
|
|
async_require = ["aiohttp>=3,<4"]
|
2013-05-01 16:37:32 +02:00
|
|
|
|
2021-08-21 00:28:19 +05:30
|
|
|
docs_require = []
|
2019-12-17 22:15:52 +01:00
|
|
|
generate_require = ["black", "jinja2"]
|
|
|
|
|
|
2013-05-01 16:37:32 +02:00
|
|
|
setup(
|
2020-10-12 16:42:23 -05:00
|
|
|
name=package_name,
|
2021-08-21 00:28:19 +05:30
|
|
|
description="Python low-level client for OpenSearch",
|
2020-02-21 10:34:08 -06:00
|
|
|
license="Apache-2.0",
|
2021-08-13 15:51:50 +05:30
|
|
|
url="https://github.com/opensearch-project/opensearch-py",
|
2019-03-29 09:27:59 -06:00
|
|
|
long_description=long_description,
|
2021-08-31 10:34:02 -05:00
|
|
|
long_description_content_type="text/markdown",
|
2020-10-12 16:42:23 -05:00
|
|
|
version=package_version,
|
2021-08-25 22:31:45 +05:30
|
|
|
author="Aleksei Atavin, Denis Zalevskiy, Rushi Agrawal, Shephali Mittal",
|
|
|
|
|
author_email="axeo@aiven.io, dez@aiven.io, rushi.agr@gmail.com, shephalm@amazon.com",
|
|
|
|
|
maintainer="Aleksei Atavin, Denis Zalevskiy, Rushi Agrawal, Shephali Mittal",
|
|
|
|
|
maintainer_email="axeo@aiven.io, dez@aiven.io, rushi.agr@gmail.com, shephalm@amazon.com",
|
2020-07-20 10:41:15 -05:00
|
|
|
project_urls={
|
2021-08-13 15:51:50 +05:30
|
|
|
"Documentation": "https://opensearch-py.readthedocs.io",
|
|
|
|
|
"Source Code": "https://github.com/opensearch-project/opensearch-py",
|
|
|
|
|
"Issue Tracker": "https://github.com/opensearch-project/opensearch-py/issues",
|
2020-07-20 10:41:15 -05:00
|
|
|
},
|
2020-10-12 16:42:23 -05:00
|
|
|
packages=packages,
|
2021-09-16 14:59:29 +05:30
|
|
|
package_data={"opensearchpy": ["py.typed", "*.pyi"]},
|
2020-08-31 11:07:04 -05:00
|
|
|
include_package_data=True,
|
|
|
|
|
zip_safe=False,
|
2019-03-29 09:27:59 -06: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",
|
2014-02-22 15:39:01 +01:00
|
|
|
"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,
|
2021-09-16 14:59:29 +05:30
|
|
|
test_suite="test_opensearchpy.run_tests.run_all",
|
2013-05-06 16:34:33 +02:00
|
|
|
tests_require=tests_require,
|
2017-05-10 16:52:58 +02:00
|
|
|
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,
|
2017-05-10 16:52:58 +02:00
|
|
|
},
|
2013-05-01 16:37:32 +02:00
|
|
|
)
|