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: try:
import arcade import arcade
except ImportError: except ImportError as e:
sys.exit( sys.exit(str(e) + """
"""This game require arcade library. This game require arcade library.
You can install it with: You can install it with:
python -m pip install --user arcade""" python -m pip install --user arcade"""
) )

View File

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