Files
opensearch-pyd/setup.py
T

126 lines
4.4 KiB
Python
Raw Normal View History

# 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.
#
# 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
2022-10-04 00:15:18 +05:30
import re
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
2013-05-01 16:37:32 +02:00
2023-11-21 13:04:39 -05:00
PACKAGE_NAME = "opensearch-py"
PACKAGE_VERSION = ""
BASE_DIR = abspath(dirname(__file__))
2013-05-01 16:37:32 +02:00
2024-01-19 13:36:05 -05:00
with open(
join(BASE_DIR, PACKAGE_NAME.replace("-", ""), "_version.py"), encoding="utf-8"
) as f:
data = f.read()
m = re.search(r"^__versionstr__: str\s+=\s+[\"\']([^\"\']+)[\"\']", data, re.M)
2023-11-06 13:08:19 -05:00
if m:
2023-11-21 13:04:39 -05:00
PACKAGE_VERSION = m.group(1)
else:
raise Exception(f"Invalid version: {data}")
2024-01-19 13:36:05 -05:00
with open(join(BASE_DIR, "README.md"), encoding="utf-8") as f:
2020-02-21 10:34:08 -06:00
long_description = f.read().strip()
2013-05-01 16:37:32 +02:00
2023-11-21 13:04:39 -05:00
MODULE_DIR = PACKAGE_NAME.replace("-", "")
packages = [
package
2021-09-16 14:59:29 +05:30
for package in find_packages(where=".", exclude=("test_opensearchpy*",))
2023-11-21 13:04:39 -05:00
if package == MODULE_DIR or package.startswith(MODULE_DIR + ".")
]
2020-05-14 16:09:24 -05:00
install_requires = [
2024-08-14 18:25:01 -04:00
'urllib3>=1.26.19,<1.27 ; python_version < "3.10"',
'urllib3>=1.26.19,!=2.2.0,!=2.2.1,<3 ; python_version >= "3.10"',
"requests>=2.32.0, <3.0.0",
"python-dateutil",
2024-08-14 18:25:01 -04:00
"certifi>=2024.07.04",
"Events",
2020-05-14 16:09:24 -05:00
]
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<8.0.0",
2020-02-21 10:34:08 -06:00
"pyyaml",
"pytest>=3.0.0",
2020-05-14 16:09:24 -05:00
"pytest-cov",
"pytz",
2023-10-24 10:57:21 -04:00
"botocore",
"pytest-mock<4.0.0",
2013-05-01 16:37:32 +02:00
]
async_require = ["aiohttp>=3.9.4,<4"]
2013-05-01 16:37:32 +02:00
2022-01-19 21:44:52 +01:00
docs_require = ["sphinx", "sphinx_rtd_theme", "myst_parser", "sphinx_copybutton"]
generate_require = ["black>=24.3.0", "jinja2"]
2019-12-17 22:15:52 +01:00
2013-05-01 16:37:32 +02:00
setup(
2023-11-21 13:04:39 -05:00
name=PACKAGE_NAME,
description="Python 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",
2023-11-21 13:04:39 -05:00
version=PACKAGE_VERSION,
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-12-13 16:53:37 +02:00
"Documentation": "https://opensearch.org/docs/clients/python",
2021-08-13 15:51:50 +05:30
"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
},
packages=packages,
2023-11-06 13:08:19 -05:00
package_data={"opensearchpy": ["py.typed"]},
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",
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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
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
],
python_requires=">=3.8, <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,
extras_require={
2019-12-17 22:15:52 +01:00
"develop": tests_require + docs_require + generate_require,
2023-11-11 17:28:43 -05:00
"docs": docs_require + async_require,
2020-05-13 13:20:15 -05:00
"async": async_require,
"kerberos": ["requests_kerberos"],
},
2013-05-01 16:37:32 +02:00
)