Attached. I don't think there's much complicated about it. It uses PyEnchant, and the relevant part of my build script is:
# freeze the application using pyinstaller
CleanDir(r'C:\devtools\pyinstaller\Listomax\distListomax')
CleanDir(r'C:\devtools\pyinstaller\Listomax\buildListomax')
os.chdir(r'C:\devtools\pyinstaller')
retcode = subprocess.call(r'C:\python25\python -OO Build.py Listomax\Listomax.spec')
os.chdir(r'C:\dev\ebay')
if retcode:
print 'pyinstaller failed with retcode =',retcode
return
Phil
listomax.spec (921 Bytes)
···
At 08:38 AM 8/5/2008, you wrote:
Anyway, as my understanding of PyInstaller and its API is very
limited, and as I would like to support as many PyInstaller options as
possible from the GUI frontend, I would like to ask to all the mailing
lists members which are currently using PyInstaller whether they could
provide their PyInstaller "setup scripts", in order for me to get a
better understanding on how to best implement the GUI part of GUI2Exe.
The more complex the "setup scripts" are, the better, as I will get a
very broad view on the GUI layout. If you could throw some explanatory
lines of comment in your setup scripts I would be very grateful.