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 a directory "lib" next to the main module and start the
main module with the following blurb:
------------------------------------------------
import sys, os
sys.path.insert(1, os.path.join(sys.path[0],"lib"))
------------------------------------------------

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to