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

51 lines
1.8 KiB
Python
Raw Permalink Normal View History

2019-07-31 16:11:27 +00:00
import royalnet.version
2019-03-22 10:22:21 +00:00
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="royalnet",
2019-07-31 16:11:27 +00:00
version=royalnet.version.semantic,
2019-03-22 10:22:21 +00:00
author="Stefano Pigozzi",
author_email="ste.pigozzi@gmail.com",
2019-09-28 16:04:35 +00:00
description="The great bot network of the User Games community",
2019-03-22 10:22:21 +00:00
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/royal-games/royalnet",
2019-03-22 10:22:21 +00:00
packages=setuptools.find_packages(),
2019-04-26 15:49:13 +00:00
install_requires=["python-telegram-bot>=11.1.0",
2019-09-28 16:34:29 +00:00
"discord.py>=1.0.1",
"websockets>=6.0",
2019-04-26 15:49:13 +00:00
"psycopg2-binary>=2.8",
"aiohttp>=3.5.4",
"sqlalchemy>=1.3.2",
"Markdown>=3.1",
"dateparser>=0.7.1",
"youtube_dl>=2019.4.24",
2019-05-06 17:02:12 +00:00
"ffmpeg-python>=0.1.17",
"PyNaCl>=1.3.0",
"werkzeug>=0.15.4",
"flask>=1.0.3",
"markdown2>=2.3.8",
2019-08-26 15:46:12 +00:00
"mcstatus>=2.2.1",
2019-08-29 11:29:59 +00:00
"sortedcontainers>=2.1.0",
2019-09-27 19:21:52 +00:00
"sentry-sdk>=0.11.1",
2019-09-28 16:04:35 +00:00
"click>=7.0",
2019-10-17 10:39:15 +00:00
"keyring>=19.2.0",
"feedparser>=5.2.1"],
2019-03-22 10:22:21 +00:00
python_requires=">=3.7",
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
2019-04-26 15:59:24 +00:00
"Topic :: Internet",
"Topic :: Database",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"License :: OSI Approved :: MIT License"
],
include_package_data=True,
2019-09-28 16:34:29 +00:00
zip_safe=False
2019-03-22 10:22:21 +00:00
)