Re: Changing script's search path at install time

2014-12-20 Thread Steven D'Aprano
Mitko Haralanov wrote: > Hi all, > > I have a question regarding installation of Python scripts and modules > using distutils that I can't find an answer to by searching through Google > and the Python website. Hopefully, someone on this list might have ideas? > > I am writing a Python app, whic

Re: Changing script's search path at install time

2014-12-19 Thread Ben Finney
Dave Angel writes: > On 12/19/2014 05:51 PM, Mitko Haralanov wrote: > > However, when the app gets installed, I would like to install the > > modules to /usr/lib64/pythonX.Y/site-packages/myapp. I know that I > > can do this by using the "package_dir" argument to the "setup()" > > function in dis

Re: Changing script's search path at install time

2014-12-19 Thread sohcahtoa82
On Friday, December 19, 2014 6:00:15 PM UTC-8, Mitko Haralanov wrote: > Hi all, > > > I have a question regarding installation of Python scripts and modules using > distutils that I can't find an answer to by searching through Google and the > Python website. Hopefully, someone on this list mig

Re: Changing script's search path at install time

2014-12-19 Thread Dave Angel
On 12/19/2014 05:51 PM, Mitko Haralanov wrote: Hi all, I have a question regarding installation of Python scripts and modules using distutils that I can't find an answer to by searching through Google and the Python website. Hopefully, someone on this list might have ideas? I am writing a Pytho

Changing script's search path at install time

2014-12-19 Thread Mitko Haralanov
Hi all, I have a question regarding installation of Python scripts and modules using distutils that I can't find an answer to by searching through Google and the Python website. Hopefully, someone on this list might have ideas? I am writing a Python app, which I would eventually like to install u