Re: [Distutils] install_requires vs requires

2009-12-15 Thread Tarek Ziadé
On Tue, Dec 15, 2009 at 8:28 AM, David Cournapeau courn...@gmail.com wrote: Hi, I am working on a new packaging solution, and I want to convert existing setup.py. I noticed that the install_requires as used by setuptools is not put into PKG-INFO as requires. Is this expected ? Yes because it

Re: [Distutils] [Bug] Failed installation. setuptools-0.6c11.win32-py2.6.exe

2009-12-15 Thread Andrey Andreev
Hi Rune, I had a similar issue on Windows Server 2008 R2. You are probably running Win 7 (64bit). I ran procmon, and found out that the installer is looking for the keys under: HKEY_LOCAL_MACHINE\Software\Wow6432Node\Python\PythonCore HKEY_CURRENT_USER\Software\Python\PythonCore so I

Re: [Distutils] [buildout] Couldn't find index page for in tests

2009-12-15 Thread Chris Withers
Reinout van Rees wrote: I thought the index page not found meant that you did not add those packages to your test buildout environment with either zc.buildout.testing.install() or zc.buildout.testing.install_develop(), Nope, if you don't do these, you get errors saying the package couldn't

Re: [Distutils] [Bug] Failed installation. setuptools-0.6c11.win32-py2.6.exe

2009-12-15 Thread P.J. Eby
At 05:17 PM 12/15/2009 +0100, Andrey Andreev wrote: Hi Rune, I had a similar issue on Windows Server 2008 R2. You are probably running Win 7 (64bit). I ran procmon, and found out that the installer is looking for the keys under: HKEY_LOCAL_MACHINE\Software\Wow6432Node\Python\PythonCore

Re: [Distutils] [Bug] Failed installation. setuptools-0.6c11.win32-py2.6.exe

2009-12-15 Thread Andrey Andreev
Hi, P.J. Eby wrote: At 05:17 PM 12/15/2009 +0100, Andrey Andreev wrote: I had a similar issue on Windows Server 2008 R2. You are probably running Win 7 (64bit). I ran procmon, and found out that the installer is looking for the keys under:

Re: [Distutils] install_requires vs requires

2009-12-15 Thread David Lyon
On Tue, 15 Dec 2009 12:58:16 +0530, David Cournapeau courn...@gmail.com wrote: Hi, I am working on a new packaging solution, and I want to convert existing setup.py. Can I join in ? Is it a public project ? ___ Distutils-SIG maillist -

Re: [Distutils] install_requires vs requires

2009-12-15 Thread David Cournapeau
On Tue, Dec 15, 2009 at 2:40 PM, Tarek Ziadé ziade.ta...@gmail.com wrote: On Tue, Dec 15, 2009 at 8:28 AM, David Cournapeau courn...@gmail.com wrote: Hi, I am working on a new packaging solution, and I want to convert existing setup.py. I noticed that the install_requires as used by