We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cff335 commit 5122083Copy full SHA for 5122083
part16.py
@@ -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