From c5417508ebfa31ba67683c4f83bc1e1db65bb314 Mon Sep 17 00:00:00 2001 From: Ilya Skriblovsky Date: Sat, 18 Mar 2023 11:12:23 +0200 Subject: [PATCH] 1.4.9 --- CHANGELOG.md | 2 +- setup.py | 8 +++++++- txredisapi.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 866903a..175da77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Release 1.4.8 (2023-03-18) +## Release 1.4.9 (2023-03-18) ### Features diff --git a/setup.py b/setup.py index 0222d1f..5b6d3d6 100644 --- a/setup.py +++ b/setup.py @@ -15,11 +15,15 @@ # limitations under the License. import setuptools +from pathlib import Path + +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() setuptools.setup( name="txredisapi", - version="1.4.8", + version="1.4.9", py_modules=["txredisapi"], install_requires=["twisted", "six"], author="Alexandre Fiori", @@ -27,6 +31,8 @@ url="http://github.com/IlyaSkriblovsky/txredisapi", license="http://www.apache.org/licenses/LICENSE-2.0", description="non-blocking redis client for python", + long_description=long_description, + long_description_content_type="text/markdown", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', diff --git a/txredisapi.py b/txredisapi.py index 8cb6b6a..24774f2 100644 --- a/txredisapi.py +++ b/txredisapi.py @@ -2812,4 +2812,4 @@ def slave_for(self, service_name, factory_class=SentinelConnectionFactory, ] __author__ = "Alexandre Fiori" -__version__ = version = "1.4.8" +__version__ = version = "1.4.9"