Re: building exe from script

2007-08-20 Thread nih
A bit more information is clearly needed... 1. Create a file called py2exeSetup.py with the following contents: from distutils.core import setup import py2exe def compile(appName, console=False): OPTIONS = {"py2exe": {"compressed": 1, "optimize": 0, "bundle_files": 1, } } ZIPFILE = None

Re: building exe from script

2007-08-20 Thread Furkan KURU
you can embed py2exe in your program. On 8/20/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello, > > Is there any solution for building exe file from python script > something like bbfreeze.When user write some script in > my program, it must compile script into exe without opening console

building exe from script

2007-08-20 Thread vedrandekovic
Hello, Is there any solution for building exe file from python script something like bbfreeze.When user write some script in my program, it must compile script into exe without opening console ( cmd ).I'am working on Windows XP SP2 and Python 2.5. Regards, Vedran -- http://mail.python.org/ma