Thank you masskonfuzion, I tried cx_freeze with tutorials last night along with trying to make a bat file to play it and both were unsuccessful.
does anyone know of some better examples of use. all the examples and tutorials I can find are all with little games. mostly or all one script and one or two image files. I have nearly 100 images and about 20 sound files...
here is my script for my cx_freese *
-----------------------------------------------
from cx_Freeze import setup, Executable
setup(
name = "spaceshooterREMASTEDgame",
version = "0.1",
description = "classic space shooter",
executables = [Executable(spaceshooterREMASTEDgame.py)])
---------------------------------------------------------------------
NameError: name 'spaceshooterREMASTEDgame' is not defined <-----this is the error I get in my command window when attempting to build the setup.py file