Skip to content

Commit

Permalink
inc version
Browse files Browse the repository at this point in the history
  • Loading branch information
orweis committed Oct 10, 2021
1 parent 37b46d0 commit 90c6e0a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
from setuptools import setup, find_packages


def get_requirements(env=""):
if env:
env = "-{}".format(env)
with open("requirements{}.txt".format(env)) as fp:
return [x.strip() for x in fp.read().split("\n") if not x.startswith("#")]


with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='fastapi_websocket_rpc',
version='0.1.19',
version='0.1.20',
author='Or Weis',
author_email="[email protected]",
description="A fast and durable bidirectional JSON RPC channel over Websockets and FastApi.",
Expand All @@ -25,7 +27,7 @@ def get_requirements(env=""):
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI"
],
],
python_requires='>=3.7',
install_requires=get_requirements(),
)

0 comments on commit 90c6e0a

Please sign in to comment.