[Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Sridhar Ratnakumar
I thought this list might be of interest to the people here. Surprisingly not many packages rely on (not declare) setuptools' extras feature [bit.ly/setuptools-extras]. http://paste.pocoo.org/raw/154703/ -srid ___ Distutils-SIG maillist -

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread kiorky
I know at least one package not in your list: zope.component [1]. [1] - http://svn.zope.org/zope.component/trunk/setup.py?rev=105736view=markup Sridhar Ratnakumar a écrit : I thought this list might be of interest to the people here. Surprisingly not many packages rely on (not declare)

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Fred Drake
On Thu, Dec 3, 2009 at 1:05 PM, kiorky kio...@cryptelium.net wrote: I know at least one package not in your list: zope.component [1]. Indeed. Many z3c.* and zope.* packages provide extras that aren't referenced by other packages directly, but are referenced from buildout configurations or

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Attila Oláh
Hi, On Thu, Dec 3, 2009 at 19:05, kiorky kio...@cryptelium.net wrote: I know at least one package not in your list: zope.component [1]. It does have a few extras (zcml being the most notable one probably), but I don't think it depends on any extras. Other packages may, however, depend on

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread kiorky
Attila Oláh a écrit : It does have a few extras (zcml being the most notable one probably), but I don't think it depends on any extras. Other packages may, however, depend on zope.component [zcml]. There are many, and as i say, and i know many others packages using extras which are not yet in

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Sridhar Ratnakumar
On 12/3/2009 10:16 AM, kiorky wrote: Attila Oláh a écrit : It does have a few extras (zcml being the most notable one probably), but I don't think it depends on any extras. Other packages may, however, depend on zope.component [zcml]. There are many, and as i say, and i know many others

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread P.J. Eby
At 10:21 AM 12/3/2009 -0800, Sridhar Ratnakumar wrote: Do you have anything particular in mind? What I did was a ``grep ^.*[a-zA-Z]\[`` in the requires.txt of (almost) all the packages in PyPI. Do note that this won't tell you about end users' use of extras. The main use case described in

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Attila Oláh
On Thu, Dec 3, 2009 at 20:05, P.J. Eby p...@telecommunity.com wrote: At 10:21 AM 12/3/2009 -0800, Sridhar Ratnakumar wrote:  Do you have anything particular in mind? What I did was a ``grep ^.*[a-zA-Z]\[`` in the requires.txt of (almost) all the packages in PyPI. Do note that this won't tell

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Ian Bicking
On Thu, Dec 3, 2009 at 1:05 PM, P.J. Eby p...@telecommunity.com wrote: At 10:21 AM 12/3/2009 -0800, Sridhar Ratnakumar wrote:  Do you have anything particular in mind? What I did was a ``grep ^.*[a-zA-Z]\[`` in the requires.txt of (almost) all the packages in PyPI. Do note that this won't

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Attila Oláh
Wouldn't it require zope.component to be a namespace package? Extras allw you to add extra files (subpackages) withot making the container package a namespace-package, it seems to me. On 12/3/09, Ian Bicking i...@colorstudy.com wrote: On Thu, Dec 3, 2009 at 1:05 PM, P.J. Eby

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread P.J. Eby
At 09:53 PM 12/3/2009 +0100, Attila Oláh wrote: Wouldn't it require zope.component to be a namespace package? Extras allw you to add extra files (subpackages) withot making the container package a namespace-package, it seems to me. No, they don't. Extras just cause a project to pull in

Re: [Distutils] 70 packages in total use setuptools' extras feature

2009-12-03 Thread Ian Bicking
On Thu, Dec 3, 2009 at 3:21 PM, P.J. Eby p...@telecommunity.com wrote: At 09:53 PM 12/3/2009 +0100, Attila Oláh wrote: Wouldn't it require zope.component to be a namespace package? Extras allw you to add extra files (subpackages) withot making the container package a namespace-package, it