From a6400c9fcf44206b25aea05018f72414f71cdda4 Mon Sep 17 00:00:00 2001 From: Ro'e Katz Date: Tue, 19 Sep 2023 19:17:16 +0300 Subject: [PATCH] Bump to version 0.1.25 --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 9efb4b6..30cd797 100644 --- a/setup.py +++ b/setup.py @@ -12,9 +12,9 @@ def get_requirements(env=""): long_description = fh.read() setup( - name='fastapi_websocket_rpc', - version='0.1.24', - author='Or Weis', + name="fastapi_websocket_rpc", + version="0.1.25", + author="Or Weis", author_email="or@permit.io", description="A fast and durable bidirectional JSON RPC channel over Websockets and FastApi.", long_description_content_type="text/markdown", @@ -26,8 +26,8 @@ def get_requirements(env=""): "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", - "Topic :: Internet :: WWW/HTTP :: WSGI" + "Topic :: Internet :: WWW/HTTP :: WSGI", ], - python_requires='>=3.7', + python_requires=">=3.7", install_requires=get_requirements(), )