Re: Bundling an application with third-party modules

2006-06-14 Thread Serge Orlov
Ben Finney wrote: > "Serge Orlov" <[EMAIL PROTECTED]> writes: > > > Ben Finney wrote: > > > That's a large part of my question. How can I lay out these > > > modules sensibly during installation so they'll be easily > > > available to, but specific to, my application? > > > > Put them in a director

Re: Bundling an application with third-party modules

2006-06-14 Thread Ben Finney
"Serge Orlov" <[EMAIL PROTECTED]> writes: > Ben Finney wrote: > > That's a large part of my question. How can I lay out these > > modules sensibly during installation so they'll be easily > > available to, but specific to, my application? > > Put them in a directory "lib" next to the main module

Re: Bundling an application with third-party modules

2006-06-14 Thread Serge Orlov
Ben Finney wrote: > > 2. An Installshield-type installer can place files (essentially) > > wherever you want them > > That's a large part of my question. How can I lay out these modules > sensibly during installation so they'll be easily available to, but > specific to, my application? Put them in

Re: Bundling an application with third-party modules

2006-06-14 Thread Ben Finney
"utabintarbo" <[EMAIL PROTECTED]> writes: > 1. py2exe/csFreeze-type thing. This would even relieve the customer > of installing python Not really what I need. I only want to have installation control over *some* of the modules, and leave Python and other dependencies up to the administrator to ma

Re: Bundling an application with third-party modules

2006-06-14 Thread Scott David Daniels
utabintarbo wrote: > A couple of alternatives: > 1. py2exe/csFreeze-type thing. This would even relieve the customer of > installing python > 2. An Installshield-type installer can place files (essentially) > wherever you want them > > HTH > Also, remember to credit those third-party packages; th

Re: Bundling an application with third-party modules

2006-06-14 Thread utabintarbo
A couple of alternatives: 1. py2exe/csFreeze-type thing. This would even relieve the customer of installing python 2. An Installshield-type installer can place files (essentially) wherever you want them HTH -- http://mail.python.org/mailman/listinfo/python-list

Bundling an application with third-party modules

2006-06-13 Thread Ben Finney
Howdy all, I'm improving an existing application that's partly written using Python and the standard library. Many of the improvements I want to make can be done by using third-party free software. The immediate customer for this application is happy to install Python on their machine, but I'd li