I have a Python package, which is one of the collection of company Python packages. When i started
python setup.py install
I want the package to be installed in the general directory of the company along with other packages of companies. I want this directory to refer to the default Python installation directory, e.g.
/usr/lib/python2.7/site-packages/<company_name>/<python_package_name>
That is, I want to insert <company_name> into the installation path during installation.
I have seen ways to prefix this path, but cannot figure out how to do what I described.
source share