2019-07-31 18:11:27 +02:00
|
|
|
import royalnet.version
|
2019-03-22 11:22:21 +01:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2019-10-19 12:44:18 +02:00
|
|
|
with open("requirements.txt", "r") as f:
|
|
|
|
install_requires = f.readlines()
|
|
|
|
|
2019-03-22 11:22:21 +01:00
|
|
|
setuptools.setup(
|
|
|
|
name="royalnet",
|
2019-07-31 18:11:27 +02:00
|
|
|
version=royalnet.version.semantic,
|
2019-03-22 11:22:21 +01:00
|
|
|
author="Stefano Pigozzi",
|
|
|
|
author_email="ste.pigozzi@gmail.com",
|
2019-09-28 18:04:35 +02:00
|
|
|
description="The great bot network of the User Games community",
|
2019-03-22 11:22:21 +01:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2019-06-06 16:16:51 +02:00
|
|
|
url="https://github.com/royal-games/royalnet",
|
2019-03-22 11:22:21 +01:00
|
|
|
packages=setuptools.find_packages(),
|
2019-10-19 12:44:18 +02:00
|
|
|
install_requires=install_requires,
|
2019-03-22 11:22:21 +01:00
|
|
|
python_requires=">=3.7",
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2019-04-26 17:59:24 +02:00
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Database",
|
|
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
|
|
"Topic :: Multimedia :: Video",
|
|
|
|
"License :: OSI Approved :: MIT License"
|
2019-06-06 16:16:51 +02:00
|
|
|
],
|
2019-10-25 13:51:55 +02:00
|
|
|
dependency_links=["https://github.com/Rapptz/discord.py/tarball/master"],
|
2019-06-06 16:16:51 +02:00
|
|
|
include_package_data=True,
|
2019-09-28 18:34:29 +02:00
|
|
|
zip_safe=False
|
2019-03-22 11:22:21 +01:00
|
|
|
)
|