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

36 lines
1.1 KiB
Python
Raw 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()
2019-10-19 10:44:18 +00:00
with open("requirements.txt", "r") as f:
install_requires = f.readlines()
2019-03-22 10:22:21 +00:00
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-10-19 10:44:18 +00:00
install_requires=install_requires,
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"
],
2019-10-25 11:51:55 +00:00
dependency_links=["https://github.com/Rapptz/discord.py/tarball/master"],
include_package_data=True,
2019-09-28 16:34:29 +00:00
zip_safe=False
2019-03-22 10:22:21 +00:00
)