-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import cx_Freeze
executables = [cx_Freeze.Executable("alien_invasion.py")]
cx_Freeze.setup(
name="Alien Invasion",
options={"build_exe": {"packages":["pygame"],
"include_files":['alien.py', 'bullet.py',
'button.py', 'game_functions.py',
'game_stats.py',
'high_score.json', 'keys.py',
'scoreboard.py', 'settings.py',
'ship.py', 'images/abby.png',
'images/background.jpg',
'images/ship.png',
'sound/bullet.wav',
'sound/explosion.wav',
'sound/hit.wav',
'sound/level_up.wav',
'sound/sad.mp3',
'sound/stars.mp3']}},
executables = executables
)