[Distutils] Avoid dependency_links / find_links

2009-10-19 Thread Patrice Neff
Hi, We manage our projects with setuptools. For this we have a local PyPi mirror with just our required packages. This mirror is specified in our setuptools environments using the index_url directive. The basic idea is: we don't want to access the internet when installing packages. Today

Re: [Distutils] Avoid dependency_links / find_links

2009-10-19 Thread P.J. Eby
At 12:02 AM 10/20/2009 +0200, Patrice Neff wrote: So the question would be: is there any way to avoid following any dependency_links and/or find_links paths and only use the index_url? Yes. See: http://peak.telecommunity.com/DevCenter/EasyInstall#restricting-downloads-with-allow-hosts which

Re: [Distutils] Avoid dependency_links / find_links

2009-10-19 Thread Patrice Neff
On Oct 20, 2009, at 12:30 AM, P.J. Eby wrote: Yes. See: http://peak.telecommunity.com/DevCenter/EasyInstall#restricting-downloads-with-allow-hosts which explains how to use the command line or configuration files to control this. Also see: