Hi Paulo,
I am creating executable with Gui2Exe but the project have one name
example setup_application.py, I want to generate executable with
Aplication.exe, in the field of the Gui2Exe add Application but the
executable generate with setup_application.exe.
If rename the executable project does not load.
There is an option in py2exe to change the executable name, and it is
called "dest_base". This option is currently not implemented in
GUI2Exe (although it would not be that complicated to add, I'll look
into it). What you could do at the moment (until I fix this missing
feature), is to export the setup file via the menus:
File => Export setup file
And then edit the generated file by editing the Target class adding
the "dest_base" keyword:
test_wx = Target(
description = "A GUI app",
script = filename,
dest_base = "YOUR_EXECUTABLE_NAME")
Then, you just use the usual:
Python setup.py py2exe
I know this will not be saved in the GUI2Exe database, but I will fix
the problem as soon as I can.
Andrea.
"Imagination Is The Only Weapon In The War Against Reality."
http://xoomer.virgilio.it/infinity77/
···
On 4/11/07, Paulo Henrique Junqueira Amorim wrote: