Using setup.py for an application, not a library module.

2009-11-18 Thread John Nagle
Most of the documentation for setup.py assumes you're packaging a library module. (Ref: http://docs.python.org/distutils/setupscript.html;) How do you properly package an application? What happens on setup.py install? Where does the application get installed? Where does the main program

Re: Using setup.py for an application, not a library module.

2009-11-18 Thread Philip Semanchuk
On Nov 18, 2009, at 3:53 PM, John Nagle wrote: Most of the documentation for setup.py assumes you're packaging a library module. (Ref: http://docs.python.org/distutils/setupscript.html ) How do you properly package an application? What happens on setup.py install? Where does the

Re: Using setup.py for an application, not a library module.

2009-11-18 Thread Alan Franzoni
On 11/18/09 9:53 PM, John Nagle wrote: Most of the documentation for setup.py assumes you're packaging a library module. (Ref: http://docs.python.org/distutils/setupscript.html;) How do you properly package an application? What happens on setup.py install? Where does the application get