fix build

This commit is contained in:
adrienmalin 2019-10-02 01:53:11 +02:00
parent 02e4aa066d
commit be66bada11
2 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,9 @@ except ImportError:
try:
import arcade
except ImportError:
sys.exit(
"""This game require arcade library.
except ImportError as e:
sys.exit(str(e) + """
This game require arcade library.
You can install it with:
python -m pip install --user arcade"""
)

View File

@ -21,7 +21,7 @@ setup(
)],
options={
"build_exe": {
"packages": ["arcade"],
"packages": ["arcade", "pyglet"],
"excludes": ["tkinter"],
"include_files": "res",
"silent": True