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

Fix templates not getting distributed correctly

This commit is contained in:
Steffo 2019-06-06 16:16:51 +02:00
parent e81d6fc1c4
commit b17aef24e6
3 changed files with 11 additions and 4 deletions

2
MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
recursive-include **/templates *.html
recursive-include **/static *

View file

@ -1,5 +1,5 @@
from . import audio, bots, commands, database, network, utils, error, web from . import audio, bots, commands, database, network, utils, error, web
version = "5.0a14" version = "5.0a15"
__all__ = ["audio", "bots", "commands", "database", "network", "utils", "error", "web"] __all__ = ["audio", "bots", "commands", "database", "network", "utils", "error", "web"]

View file

@ -12,7 +12,7 @@ setuptools.setup(
description="The great bot network of the Royal Games community", description="The great bot network of the Royal Games community",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/Steffo99/royalnet", url="https://github.com/royal-games/royalnet",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
install_requires=["python-telegram-bot>=11.1.0", install_requires=["python-telegram-bot>=11.1.0",
"websockets>=7.0", "websockets>=7.0",
@ -24,7 +24,10 @@ setuptools.setup(
"discord.py>=1.0.1", "discord.py>=1.0.1",
"youtube_dl>=2019.4.24", "youtube_dl>=2019.4.24",
"ffmpeg-python>=0.1.17", "ffmpeg-python>=0.1.17",
"PyNaCl>=1.3.0"], "PyNaCl>=1.3.0",
"werkzeug>=0.15.4",
"flask>=1.0.3",
"markdown2>=2.3.8"],
python_requires=">=3.7", python_requires=">=3.7",
classifiers=[ classifiers=[
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
@ -35,5 +38,7 @@ setuptools.setup(
"Topic :: Multimedia :: Sound/Audio", "Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video", "Topic :: Multimedia :: Video",
"License :: OSI Approved :: MIT License" "License :: OSI Approved :: MIT License"
] ],
include_package_data=True,
zip_safe=False,
) )