import cx_Freeze
executables = [cx_Freeze.Executable("dodgegame.py")]
cx_Freeze.setup(
name="A bit Racey",
options={"build_exe": {"packages":["pygame"],
"include_files":["racecar.png","icon.png","Crash.mp3","Feel_The_Funk.mp3"]}},
executables = executables
)
The app is not starting. I have almost been working for an hour but could not find a solution.