mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
28 lines
783 B
Python
28 lines
783 B
Python
|
import setuptools
|
||
|
|
||
|
with open("README.md", "r") as f:
|
||
|
long_description = f.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="royalnet",
|
||
|
version="5.0a1",
|
||
|
author="Stefano Pigozzi",
|
||
|
author_email="ste.pigozzi@gmail.com",
|
||
|
description="The great bot network of the Royal Games community",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://github.com/Steffo99/royalnet",
|
||
|
packages=setuptools.find_packages(),
|
||
|
install_requires=[
|
||
|
"python-telegram-bot>=11.1.0",
|
||
|
"websockets>=7.0"
|
||
|
],
|
||
|
python_requires=">=3.7",
|
||
|
classifiers=[
|
||
|
"Development Status :: 3 - Alpha",
|
||
|
"Operating System :: OS Independent",
|
||
|
"Programming Language :: Python :: 3.7",
|
||
|
"Topic :: Internet"
|
||
|
]
|
||
|
)
|