I need to deploy a python project with rpm
package. I make it with setuptools
library:
python setup.py bdist_rpm
After command rpm -i myapp.rpm
performed application installs to the directory /usr/lib/python2.6/site-packages/
. However, I need to install my application to another folder /foo/
. How can I gain it?