Using setuptools
of Python, is it possible to specify the output directory when I install a python project ?
In my project directory:
python setup.py install
I would like to install the project into the /usr/share/myproject/
directory for example.
I don't want to specify the output directory in my command line. I'd like to specify this output directory into the setup.py
.