Hi,

I've got a script that works on OS X but i've just tried to make an
executable on windows 7 x64 however it just stop responding then quit. Is
there anyway to get more output to understand why this happened.

My script looks like:

application_title = "software" #what you want to application to be called
main_python_file = "./src/main.py" #the name of the python file you
use to run the program
import sysfrom cx_Freeze import setup, Executable

base = Noneif sys.platform == "win32":
    base = "Win32GUI"

includes = ["atexit","re"]

setup(
    name = application_title,
    version = "0.1",
    description = "Description",
    options = {"build_exe" : {"includes" : includes }},
    executables = [Executable(main_python_file, base = base)])


So what can I do to get it to work on windows?

Thanks in Advance,

Dean
------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
cx-freeze-users mailing list
cx-freeze-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to