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
> 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
>> 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
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
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
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
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 --