Re: [Distutils] Python Packaging User Guide

2013-07-03 Thread Nick Coghlan
On 3 July 2013 09:18, Alex Burke alexjeffbu...@gmail.com wrote: Hi Marcus, I would very much like to get involved and help with this effort - in fact I was looking to package up some of my own work recently and stumbled on The Hitchhiker’s Guide to Packaging but could tell some of the advice

[Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread Alexander Schneider
Hello and sorry if I am on the wrong mailing list. I'm working on a dependency resolution resolver and wanted to implement support for the new Metadata format. (As of now i'm parsing the setup.py for dependency information and am dependent on a self build metadata database of all PyPI packages)

Re: [Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread Nick Coghlan
On 3 July 2013 19:17, Alexander Schneider alexander.schnei...@uni-duesseldorf.de wrote: Hello and sorry if I am on the wrong mailing list. I'm working on a dependency resolution resolver and wanted to implement support for the new Metadata format. (As of now i'm parsing the setup.py for

Re: [Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread Vinay Sajip
Alexander Schneider Alexander.Schneider at uni-duesseldorf.de writes: Will there be build-in Metadata in the new PEP 426 format online on PyPI for all packages? If yes, are there already specifications on how they will be retreavable? I have experimental support for PEP 426 metadata

[Distutils] $MACOSX_DEPLOYMENT_TARGET mismatch

2013-07-03 Thread Alan
Hi there, I am trying to install readline and cx_Oracle on my Mac OSX 10.8.4. I've just installed python 2.7.3 standard in my $HOME dir and then I did: export PATH=$HOME/bin:$PATH ~/setuptools-0.7.7 python setup.py install --prefix=$HOME which worked. I tried to installed ipython 0.13.2 which

Re: [Distutils] [venv] pip and virtualenv release candidates

2013-07-03 Thread Marcus Smith
FWIW, the following works to update a distribute-baesd virtualenv to the new setuptools / vr: $ bin/easy_install \ --find-links https://bitbucket.org/pypa/setuptools/downloads/ \ -U distribute good pt. if you use the unofficial release location, you can do it with pip as well.

Re: [Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread PJ Eby
On Wed, Jul 3, 2013 at 10:51 AM, Vinay Sajip vinay_sa...@yahoo.co.uk wrote: If you deserialize the JSON at an URL like the above into a dict, the PEP 426 metadata is available in the subdict at key index-metadata in the top-level dict. Example from setuptools 0.7.5: index-metadata: {

Re: [Distutils] $MACOSX_DEPLOYMENT_TARGET mismatch

2013-07-03 Thread Chris Barker - NOAA Federal
This is really a build question, rather than a distributuion question -- Id try the pythonmac list: http://mail.python.org/mailman/listinfo/pythonmac-sig I recall that readline is a bit of a pain on the Mac, but don't recall the solution (nor am I running 10.8 yet). Good luck, -Chris On Wed,

Re: [Distutils] PyPI upload failed (302): Moved Temporarily

2013-07-03 Thread Maurits van Rees
Op 02-07-13 13:47, W. Trevor King schreef: Hello list! I'm having a bit of trouble getting a new package setup on PyPI. I've done this a few times in the past, but maybe not since the wiki hacking that inspired the HTTPS transition back in February. I did change my password back then, so I

[Distutils] python option in buildout 2.1.1

2013-07-03 Thread Joe Steeve
From the buildout 2.1.1 docs on pypi: python The name of a section containing information about the default Python interpreter. Recipes that need a installation typically have options to tell them which Python installation to

Re: [Distutils] $MACOSX_DEPLOYMENT_TARGET mismatch

2013-07-03 Thread Alan
Well, I found out that if before compiling my python I set export MACOSX_DEPLOYMENT_TARGET=10.3 and then do all the rest, then I get easy_install to work. Besides, I had the same error trying to install cx_Oracle. So, somehow my python (or setuptools) need to build for 10.3. For me it's a bug

Re: [Distutils] $MACOSX_DEPLOYMENT_TARGET mismatch

2013-07-03 Thread Chris Barker - NOAA Federal
On Wed, Jul 3, 2013 at 12:12 PM, Alan alanwil...@gmail.com wrote: Well, I found out that if before compiling my python I set export MACOSX_DEPLOYMENT_TARGET=10.3 and then do all the rest, then I get easy_install to work. cool - well done. So, somehow my python (or setuptools) need to build

Re: [Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread Vinay Sajip
PJ Eby pje at telecommunity.com writes: Just an FYI, not sure if this is an issue with your converter or with the new spec, but the metadata shown for setuptools is missing something important: 0.7.x pins specific distributions of its dependencies using dependency_links URLs with #md5 hashes,

[Distutils] zc.recipe.egg skips script-generation

2013-07-03 Thread Joe Steeve
Hello all, If this is not the right place to talk about 'zc.recipe.egg', please be kind and point me to the right place :) I am trying to create a buildout to work with some eggs using ipython. I have a buildout.cfg like this: [buildout] develop = . parts =

Re: [Distutils] python option in buildout 2.1.1

2013-07-03 Thread Joe Steeve
On Wed, 2013-07-03 at 16:32 -0400, Jim Fulton wrote: That's a documentation bug. :( I'll fix that. Thank you. -- Joe Steeve HiPro IT Solutions Private Limited http://hipro.co.in/ signature.asc Description: This is a digitally signed message part

[Distutils] Weekly Download Counters Enabled

2013-07-03 Thread Donald Stufft
Just a quick follow up to last weeks email the download counters for weekly numbers has now been enabled on PyPI. - Donald Stufft PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA signature.asc Description: Message signed with OpenPGP using GPGMail

Re: [Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread PJ Eby
On Wed, Jul 3, 2013 at 2:34 PM, Donald Stufft don...@stufft.io wrote: PEP426 does not support dependency_links. Right - I would've expected direct references in this scenario, assuming the PEP still has them. ___ Distutils-SIG maillist -

Re: [Distutils] Metadataformat PEP 426 on PyPI?

2013-07-03 Thread Donald Stufft
On Jul 3, 2013, at 7:38 PM, PJ Eby p...@telecommunity.com wrote: On Wed, Jul 3, 2013 at 2:34 PM, Donald Stufft don...@stufft.io wrote: PEP426 does not support dependency_links. Right - I would've expected direct references in this scenario, assuming the PEP still has them. Yea PEP440

Re: [Distutils] zc.recipe.egg skips script-generation

2013-07-03 Thread Joe Steeve
On Thu, 2013-07-04 at 03:15 +0530, Joe Steeve wrote: I have an ipython (0.13.1) installed in my system python's site-packages. When I run buildout with the above, buildout simply says Installing ipython_part and does not do anything else. If I remove my system ipython (apt-get purge ipython),

[Distutils] PyPI CDN Updates For Greater Availability

2013-07-03 Thread Donald Stufft
Several changes were just deployed to PyPI's CDN. The general theme behind the changes is making it so that PyPI appears as functional as possible through a failure of the server hosting it. This should increase the availability of PyPI and enable things such as installation and browsing the site