Re: I want py2exe not to create library.zip

2007-09-13 Thread Grant Edwards
On 2007-09-13, Laszlo Nagy <[EMAIL PROTECTED]> wrote: > >>> I want py2exe not to create library.zip. >>> >> >> setup ( >>[...] >>options = {"py2exe": {"skip_archive":1}} >> ) > > Cool! Just what I needed. Where it is documented? Ah, in the source. :-) That's prett

Re: I want py2exe not to create library.zip

2007-09-13 Thread Laszlo Nagy
> That is correct. People want less files to distribute not more. People > complain on py2exe list that it doesn't create a single .EXE file. Don't > try to update the program via patching "pieces". Wrap everything in a proper > installer (I use and highly recommend Inno Setup). It can hand

Re: I want py2exe not to create library.zip

2007-09-13 Thread Laszlo Nagy
>> I want py2exe not to create library.zip. >> > > setup ( >[...] >options = {"py2exe": {"skip_archive":1}} > ) > Cool! Just what I needed. Where it is documented? Ah, in the source. :-) -- http://mail.python.org/mailman/listinfo/python-list

Re: I want py2exe not to create library.zip

2007-09-12 Thread Grant Edwards
On 2007-09-12, Rob Williscroft <[EMAIL PROTECTED]> wrote: > On Wed, 12 Sep 2007 22:09:30 +0200, Laszlo Nagy wrote: > >> Hi, >> >> I want py2exe not to create library.zip. My reason is that the installed >> program will be a self updating program, and it must be able to download >> changes (newer p

Re: I want py2exe not to create library.zip

2007-09-12 Thread Grant Edwards
On 2007-09-12, Laszlo Nagy <[EMAIL PROTECTED]> wrote: > I want py2exe not to create library.zip. setup ( [...] options = {"py2exe": {"skip_archive":1}} ) -- Grant Edwards grante Yow! Am I accompanied by a

Re: I want py2exe not to create library.zip

2007-09-12 Thread Rob Williscroft
On Wed, 12 Sep 2007 22:09:30 +0200, Laszlo Nagy wrote: > Hi, > > I want py2exe not to create library.zip. My reason is that the installed > program will be a self updating program, and it must be able to download > changes (newer python source files) from the server. So the files should > not be

Re: I want py2exe not to create library.zip

2007-09-12 Thread Larry Bates
Laszlo Nagy wrote: > > Hi, > > I want py2exe not to create library.zip. My reason is that the installed > program will be a self updating program, and it must be able to download > changes (newer python source files) from the server. So the files should > not be in library.zip. I tried the --