Skip to content

Commit 5122083

Browse files
committed
Create part16.py
1 parent 9cff335 commit 5122083

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

part16.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import cx_Freeze
2+
3+
executables = [cx_Freeze.Executable("pygameVideo15.py")]
4+
5+
cx_Freeze.setup(
6+
name="A bit Racey",
7+
options={"build_exe": {"packages":["pygame"],
8+
"include_files":["racecar.png"]}},
9+
executables = executables
10+
11+
)

0 commit comments

Comments
 (0)