Skip to content

Commit

Permalink
Update package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Feb 22, 2020
1 parent 0546991 commit 1a1ab99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ include README.rst
include README
include tox.ini
include setup.py
include elasticsearch/connection/esthrift/Rest-remote
recursive-include docs *

prune docs/_build
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source-dir = docs/
build-dir = docs/_build
all_files = 1

[wheel]
[bdist_wheel]
universal = 1

[bdist_rpm]
Expand Down
17 changes: 8 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,34 @@
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

f = open(join(dirname(__file__), "README"))
long_description = f.read().strip()
f.close()
with open(join(dirname(__file__), "README")) as f:
long_description = f.read().strip()

install_requires = ["urllib3>=1.21.1"]
tests_require = [
"requests>=2.0.0, <3.0.0",
"nose",
"coverage",
"mock",
"pyaml",
"pyyaml",
"nosexcover",
]

docs_require = ["sphinx<1.7", "sphinx_rtd_theme"]
generate_require = ["black", "jinja2"]

# use external unittest for 2.6
if sys.version_info[:2] == (2, 6):
install_requires.append("unittest2")

setup(
name="elasticsearch",
description="Python client for Elasticsearch",
license="Apache License, Version 2.0",
license="Apache-2.0",
url="https://github.com/elastic/elasticsearch-py",
long_description=long_description,
long_description_content_type="text/x-rst",
version=__versionstr__,
author="Honza Král, Nick Lang",
author_email="honza.kral@gmail.com, nick@nicklang.com",
maintainer="Seth Michael Larson",
maintainer_email="seth.larson@elastic.co",
packages=find_packages(where=".", exclude=("test_elasticsearch*",)),
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand All @@ -55,6 +53,7 @@
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
install_requires=install_requires,
test_suite="test_elasticsearch.run_tests.run_all",
tests_require=tests_require,
Expand Down

0 comments on commit 1a1ab99

Please sign in to comment.