Update package metadata

This commit is contained in:
Seth Michael Larson
2020-02-22 13:38:39 -06:00
committed by Seth Michael Larson
parent 054699161c
commit 1a1ab99d9a
3 changed files with 9 additions and 11 deletions
-1
View File
@@ -7,7 +7,6 @@ include README.rst
include README include README
include tox.ini include tox.ini
include setup.py include setup.py
include elasticsearch/connection/esthrift/Rest-remote
recursive-include docs * recursive-include docs *
prune docs/_build prune docs/_build
+1 -1
View File
@@ -3,7 +3,7 @@ source-dir = docs/
build-dir = docs/_build build-dir = docs/_build
all_files = 1 all_files = 1
[wheel] [bdist_wheel]
universal = 1 universal = 1
[bdist_rpm] [bdist_rpm]
+7 -8
View File
@@ -7,9 +7,8 @@ VERSION = (7, 5, 1)
__version__ = VERSION __version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION)) __versionstr__ = ".".join(map(str, VERSION))
f = open(join(dirname(__file__), "README")) with open(join(dirname(__file__), "README")) as f:
long_description = f.read().strip() long_description = f.read().strip()
f.close()
install_requires = ["urllib3>=1.21.1"] install_requires = ["urllib3>=1.21.1"]
tests_require = [ tests_require = [
@@ -17,26 +16,25 @@ tests_require = [
"nose", "nose",
"coverage", "coverage",
"mock", "mock",
"pyaml", "pyyaml",
"nosexcover", "nosexcover",
] ]
docs_require = ["sphinx<1.7", "sphinx_rtd_theme"] docs_require = ["sphinx<1.7", "sphinx_rtd_theme"]
generate_require = ["black", "jinja2"] generate_require = ["black", "jinja2"]
# use external unittest for 2.6
if sys.version_info[:2] == (2, 6):
install_requires.append("unittest2")
setup( setup(
name="elasticsearch", name="elasticsearch",
description="Python client for Elasticsearch", description="Python client for Elasticsearch",
license="Apache License, Version 2.0", license="Apache-2.0",
url="https://github.com/elastic/elasticsearch-py", url="https://github.com/elastic/elasticsearch-py",
long_description=long_description, long_description=long_description,
long_description_content_type="text/x-rst",
version=__versionstr__, version=__versionstr__,
author="Honza Král, Nick Lang", author="Honza Král, Nick Lang",
author_email="[email protected], [email protected]", author_email="[email protected], [email protected]",
maintainer="Seth Michael Larson",
maintainer_email="[email protected]",
packages=find_packages(where=".", exclude=("test_elasticsearch*",)), packages=find_packages(where=".", exclude=("test_elasticsearch*",)),
classifiers=[ classifiers=[
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
@@ -55,6 +53,7 @@ setup(
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
], ],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
install_requires=install_requires, install_requires=install_requires,
test_suite="test_elasticsearch.run_tests.run_all", test_suite="test_elasticsearch.run_tests.run_all",
tests_require=tests_require, tests_require=tests_require,