2019-10-15 09:07:04 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="royalherald",
|
2019-10-17 17:46:05 +00:00
|
|
|
version="5.0b5",
|
2019-10-15 09:07:04 +00:00
|
|
|
author="Stefano Pigozzi",
|
|
|
|
author_email="ste.pigozzi@gmail.com",
|
|
|
|
description="A websocket communication protocol",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/Steffo99/royalherald",
|
|
|
|
packages=setuptools.find_packages(),
|
2019-10-15 09:13:22 +00:00
|
|
|
install_requires=["websockets>=8.0"],
|
2019-10-15 09:07:04 +00:00
|
|
|
python_requires=">=3.7",
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"License :: OSI Approved :: MIT License"
|
|
|
|
]
|
|
|
|
)
|