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
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