mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
import royalnet.version
|
|
import setuptools
|
|
|
|
with open("README.md", "r") as f:
|
|
long_description = f.read()
|
|
|
|
with open("requirements.txt", "r") as f:
|
|
install_requires = [line for line in f.readlines() if not line.startswith("#")]
|
|
|
|
setuptools.setup(
|
|
name="royalnet",
|
|
version=royalnet.version.semantic,
|
|
author="Stefano Pigozzi",
|
|
author_email="ste.pigozzi@gmail.com",
|
|
description="The great bot network of the User Games community",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/royal-games/royalnet",
|
|
packages=setuptools.find_packages(),
|
|
install_requires=install_requires,
|
|
python_requires=">=3.7",
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Topic :: Internet",
|
|
"Topic :: Database",
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
"Topic :: Multimedia :: Video",
|
|
"License :: OSI Approved :: MIT License"
|
|
],
|
|
dependency_links=["https://github.com/Rapptz/discord.py/tarball/master"],
|
|
include_package_data=True,
|
|
zip_safe=False
|
|
)
|