PythonCard and Py2Exe

Fredrik Lundh fredrik at pythonware.com
Tue Feb 15 09:07:56 EST 2005


PipedreamerGrey at yahoo.com wrote:

> I've been banging my head against this problem for a week.  It's time
> to ask for help, because I'm obviously not going to solve this by trial
> and error.  I'm trying to create a standalone version (.exe) of
> PythonCard's Custdb sample using Py2Exe version 0.5.0.  Everytime I
> attempt to compile the program, I get an error during compilation.  I
> need to formulate the correct setup file.  Here's the one I began with:
>
>
> from distutils.core import setup
> from PythonCard import dialog, model
> import PythonCard
> import py2exe
>
> setup( name = "custdb",
>       console = ["custdb.py"],
>       data_files = [ (".", ["custdb.ini", "custdb.rsrc.py",
> "customerdata.csv"]) ]
>       )
>
> Every variation of this format failed.

failed, as in?  did you get an error message?  can you post the error message?

</F> 






More information about the Python-list mailing list