11from setuptools import setup , find_packages
22
3+
34def get_requirements (env = "" ):
45 if env :
56 env = "-{}" .format (env )
67 with open ("requirements{}.txt" .format (env )) as fp :
78 return [x .strip () for x in fp .read ().split ("\n " ) if not x .startswith ("#" )]
89
10+
911with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
1012 long_description = fh .read ()
1113
1214setup (
13- name = ' fastapi_websocket_pubsub' ,
14- version = ' 0.3.3' ,
15- author = ' Or Weis' ,
15+ name = " fastapi_websocket_pubsub" ,
16+ version = " 0.3.4" ,
17+ author = " Or Weis" ,
16181719 description = "A fast and durable PubSub channel over Websockets (using fastapi-websockets-rpc)." ,
1820 long_description_content_type = "text/markdown" ,
@@ -24,8 +26,8 @@ def get_requirements(env=""):
2426 "License :: OSI Approved :: MIT License" ,
2527 "Operating System :: OS Independent" ,
2628 "Topic :: Internet :: WWW/HTTP :: HTTP Servers" ,
27- "Topic :: Internet :: WWW/HTTP :: WSGI"
29+ "Topic :: Internet :: WWW/HTTP :: WSGI" ,
2830 ],
29- python_requires = ' >=3.7' ,
31+ python_requires = " >=3.8" ,
3032 install_requires = get_requirements (),
3133)
0 commit comments