1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

Fix requirements

This commit is contained in:
Steffo 2019-10-15 11:13:22 +02:00
parent 3df87ce6db
commit e0b115f62b
2 changed files with 4 additions and 2 deletions

2
requirements.txt Normal file
View file

@ -0,0 +1,2 @@
websockets>=8.0
pytest>=5.2.1

View file

@ -5,7 +5,7 @@ with open("README.md", "r") as f:
setuptools.setup( setuptools.setup(
name="royalherald", name="royalherald",
version="5.0b1", version="5.0b2",
author="Stefano Pigozzi", author="Stefano Pigozzi",
author_email="ste.pigozzi@gmail.com", author_email="ste.pigozzi@gmail.com",
description="A websocket communication protocol", description="A websocket communication protocol",
@ -13,7 +13,7 @@ setuptools.setup(
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/Steffo99/royalherald", url="https://github.com/Steffo99/royalherald",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
install_requires=[], install_requires=["websockets>=8.0"],
python_requires=">=3.7", python_requires=">=3.7",
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",