I look for private Python Index server on my local network... What do you use ?
Jeff McNeil
jeff at jmcneil.net
Tue Jun 23 10:35:18 EDT 2009
On Jun 23, 7:47 am, Klein Stéphane <steph... at harobed.org> wrote:
> Hi,
>
> I wonder what Python Index server (like as pypi.python.org) do you use in
> your corporation for handle your private python eggs ?
>
> I found three solutions :
>
> *http://pypi.python.org/pypi/basketweaver/0.1.2-r6
> *http://pypi.python.org/pypi/pypi/2005-08-01
> *http://pypi.python.org/pypi/EggBasket/0.6.1b
>
> Do you know another software ? What do you use ?
>
> Thanks for your help,
> Stephane
I've always just created a directory structure laid out by egg name
and enabled directory indexing. I've never really had a need for
anything more complex and this has always worked well for me.
For example:
[root at buildslave01 eggs]# pwd
/var/www/html/eggs
[root at buildslave01 eggs]#
[root at buildslave01 eggs]# ls
Beaker hostapi.logmgmt Paste SQLAlchemy
zope.component
[root at buildslave01 eggs]#
[root at buildslave01 eggs]# ls Beaker/
Beaker-1.1.2-py2.4.egg Beaker-1.2.1-py2.4.egg
[root at buildslave01 eggs]#
On this particular system, buildbot drops successfully built eggs into
the correct location automatically for testing purposes.
HTH,
Jeff
More information about the Python-list
mailing list