[Distutils] easy_install finding wrong platform

2006-05-08 Thread Charlie Moad
For matplotlib I have pypi's download url set to "http://sourceforge.net/project/showfiles.php?group_id=80706&package_id=82474";. All the files are over the 5MB limit in case anyone asks. When I run "easy_install -U matplotlib" on windows 2.4 it is downloading the "matplotlib-0.87.2-py2.4-macosx1

Re: [Distutils] Upgrading eggs from custom url

2006-04-21 Thread Charlie Moad
On 4/20/06, bear <[EMAIL PROTECTED]> wrote: > > Charlie Moad wrote: > > When issuing an "--upgrade" option, can the "download_url" be checked > > automatically, or is there an existing way I can get a handle on that > > "download_url&

[Distutils] Upgrading eggs from custom url

2006-04-20 Thread Charlie Moad
I am using setuptools to maintain some plugins I wrote for a python based protein viewer. I would like to have another plugin that simply checks for updates for the currently installed plugins. Code may help, so basically I would like to run: from setuptools.command import easy_install easy

[Distutils] Upgrading dependencies

2006-04-03 Thread Charlie Moad
Is it currently possible to upgrade dependencies as well when upgrading a packages? If not, this would be a really nice feature to add to easy_install. Maybe a call like: easy_install --upgrade --upgrade-deps Package Obviously it makes sense to leave this off by default. Thanks, Charlie _

Re: [Distutils] Decompressing .egg files

2006-02-08 Thread Charlie Moad
I think you can just unzip them, since they are zip files. Some programs might complain about the different extension though. On 2/8/06, Giovanni Bajo <[EMAIL PROTECTED]> wrote: > Hello, > > is there an easy_install option to decompress existing .egg files? I could > probably run "easy_install -Z

Re: [Distutils] static linking in distutils/setuptools?

2006-01-23 Thread Charlie Moad
With the OSX eggs I link and include static libraries for libpng and freetype. You can just put them in a directory and when building mpl use something like, "LDFLAGS=/tmp/static-libs python setup.py build". This will make setuptools look in the directory you specify first. On 1/23/06, Christoph

Re: [Distutils] Sourceforge changed HTML again...

2006-01-23 Thread Charlie Moad
On 1/18/06, Ian Bicking <[EMAIL PROTECTED]> wrote: > Phillip J. Eby wrote: > > I checked what the NetBSD "pkgsrc" system does, and it uses the fact > > that there is a .dl.sourceforge.net subdomain for mirrors. I > > investigated further and found that dl.sourceforge.net is a round-robin > > (or r

Re: [Distutils] namespace_packages

2006-01-20 Thread Charlie Moad
t;[EMAIL PROTECTED]> wrote: > At 12:44 PM 01/20/2006 -0500, Charlie Moad wrote: > >Here are the eggs if you want to unzip and look at them. I installed > >both unzipped. > > > >http://euclid.uits.iupui.edu/~cmoad/mpleggs/matplotlib-0.86.2cvs-py2.4-linux-i686.egg > >

Re: [Distutils] namespace_packages

2006-01-20 Thread Charlie Moad
Here are the eggs if you want to unzip and look at them. I installed both unzipped. http://euclid.uits.iupui.edu/~cmoad/mpleggs/matplotlib-0.86.2cvs-py2.4-linux-i686.egg http://euclid.uits.iupui.edu/~cmoad/mpleggs/basemap-0.8-py2.4-linux-i686.egg ___ Di

Re: [Distutils] namespace_packages

2006-01-20 Thread Charlie Moad
On 1/20/06, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 11:20 AM 01/20/2006 -0500, Charlie Moad wrote: > >On 1/19/06, Robert Kern <[EMAIL PROTECTED]> wrote: > > > Charlie Moad wrote: > > > > Well here are th cvs links to them. > > > > > &

Re: [Distutils] namespace_packages

2006-01-20 Thread Charlie Moad
On 1/19/06, Robert Kern <[EMAIL PROTECTED]> wrote: > Charlie Moad wrote: > > Well here are th cvs links to them. > > > > http://cvs.sourceforge.net/viewcvs.py/matplotlib/matplotlib/setup.py?rev=1.143&view=auto > > http://cvs.sourceforge.net/viewcvs.py/matplotl

Re: [Distutils] namespace_packages

2006-01-19 Thread Charlie Moad
On 1/19/06, Robert Kern <[EMAIL PROTECTED]> wrote: > Charlie Moad wrote: > > Well here are th cvs links to them. > > > > http://cvs.sourceforge.net/viewcvs.py/matplotlib/matplotlib/setup.py?rev=1.143&view=auto > > http://cvs.sourceforge.net/viewcvs.py/matplotl

Re: [Distutils] namespace_packages

2006-01-19 Thread Charlie Moad
s not in the setup.py file. I have tried adding both. In basemap however, the matplotlib.toolkits module does exist and is listed in the setup.py file. On 1/19/06, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 11:44 AM 01/19/2006 -0500, Charlie Moad wrote: > >I tried the

Re: [Distutils] namespace_packages

2006-01-19 Thread Charlie Moad
I tried the "." and I keep getting: error in basemap setup command: Distribution contains no modules or packages for namespace package 'matplotlib.toolkits' On 1/18/06, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 01:35 PM 01/18/2006 -0500, Charlie Moad wrote: >

[Distutils] namespace_packages

2006-01-18 Thread Charlie Moad
Following the instruction for setuptools, I am trying to make matplotlib and basemap (a mpl toolkit) share the namespace "matplotlib/toolkits". I can build and install the eggs no problems. "matplotlib/toolkits" is in both's "EGG-INFO/namespace_packages.txt" files. I have added __init__.py files