Re: py2exe - change name of exe created

2007-09-07 Thread Thomas Heller
imageguy schrieb: [...] >> > Note that every thing works fine with this and creates an exe program >> > called >> > "myprogram.exe" >> >> > I would like to setup program to create an output called; >> > "MyBestProgram.exe" >> >> > IS that at all possible ? >> >> Yes. Use a 'dest_base' key in the d

Re: py2exe - change name of exe created

2007-09-07 Thread imageguy
On Sep 7, 11:22 am, Thomas Heller <[EMAIL PROTECTED]> wrote: > imageguy schrieb: > > > > > > > Sorry for the double post, sent it to quickly. > > > I have a setup script like this; > > > setup(windows = [{"script":"myprogram.py", > >"icon_resources":[(0,"nabbitt.ico")], > >

Re: py2exe - change name of exe created

2007-09-07 Thread Thomas Heller
imageguy schrieb: > Sorry for the double post, sent it to quickly. > > I have a setup script like this; > > setup(windows = [{"script":"myprogram.py", >"icon_resources":[(0,"nabbitt.ico")], > "other_resources": [(24,1,manifest)]} > ], > name

Re: py2exe - change name of exe created

2007-09-07 Thread Grant Edwards
On 2007-09-07, imageguy <[EMAIL PROTECTED]> wrote: > Note that every thing works fine with this and creates an exe > program called "myprogram.exe" > > I would like to setup program to create an output called; > "MyBestProgram.exe" > > IS that at all possible ? ADD this to the end of your script:

Re: py2exe - change name of exe created

2007-09-07 Thread imageguy
Sorry for the double post, sent it to quickly. I have a setup script like this; setup(windows = [{"script":"myprogram.py", "icon_resources":[(0,"nabbitt.ico")], "other_resources": [(24,1,manifest)]} ], name = "My Program ver 0.1",

py2exe - change name of exe created

2007-09-07 Thread imageguy
I have a setup script like this; setup(windows = [{"script":"myprogram.py", "icon_resources":[(0,"nabbitt.ico")], "other_resources": [(24,1,manifest)]} ], name = "Nabbitt ver 0.1", data_files = [("",rootdata)],

py2exe - change name of exe created

2007-09-07 Thread imageguy
I have a setup script like this; setup(windows = [{"script":"myprogram.py", "icon_resources":[(0,"nabbitt.ico")], "other_resources": [(24,1,manifest)]} ], name = "Nabbitt ver 0.1", data_files = [("",rootdata)],