From c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Thu, 7 Jul 2005 16:28:43 +0000 Subject: Add upload support to setuptools, and make default downloads of setuptools come from PyPI/python.org rather than from telecommunity.com. Bump to version 0.5a7. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041090 --- ez_setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ez_setup.py') diff --git a/ez_setup.py b/ez_setup.py index a0367e22..674138d3 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -14,8 +14,8 @@ the appropriate options to ``use_setuptools()``. This file can also be run as a script to install or upgrade setuptools. """ -DEFAULT_VERSION = "0.5a6" -DEFAULT_URL = "http://peak.telecommunity.com/dist/" +DEFAULT_VERSION = "0.5a7" +DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/" import sys, os @@ -91,7 +91,7 @@ def download_setuptools( """ import urllib2, shutil egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) - url = download_base + egg_name + url = download_base + egg_name + '.zip' # XXX saveto = os.path.join(to_dir, egg_name) src = dst = None -- cgit v1.2.3