make install with python

2005-01-21 Thread Uwe Mayer
Hi, I am writing a Python application and use the GNU auto-tools to compile what needs compilation (i.e. Qt's .ui files). However, I don't know how to write an automake file that installs the main file (lmc.py) and some library files (i.e. ClassA.py, ClassB.py) into the appropriate directories.

Re: make install with python

2005-01-21 Thread Reinhold Birkenfeld
Uwe Mayer wrote: > Hi, > > I am writing a Python application and use the GNU auto-tools to compile what > needs compilation (i.e. Qt's .ui files). > However, I don't know how to write an automake file that installs the main > file (lmc.py) and some library files (i.e. ClassA.py, ClassB.py) into th

Re: make install with python

2005-01-21 Thread Uwe Mayer
Friday 21 January 2005 20:47 pm Reinhold Birkenfeld wrote: [...] > The regular way is to use distutils and a setup.py file (google for > documentation). Ok, thanks. The document described just what I was looking for. Any suggestions how I handle

Re: make install with python

2005-01-23 Thread Christopher De Vries
On Sat, Jan 22, 2005 at 01:54:17AM +0100, Uwe Mayer wrote: > Any suggestions how I handle uninstallation? This was provided by automake > rather mechanically. I didn't find a section on that in the distutils > documentation... :( I've been using distutils for a couple of projects I've written for