diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-07 16:28:43 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-07 16:28:43 +0000 |
commit | c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee (patch) | |
tree | 06d3d26a04aae3e25b0edc503b24f606cb76baef /ez_setup.py | |
parent | 61d2fd1d71e8940531c35327e6d91c41ddcd9dbd (diff) | |
download | external_python_setuptools-c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee.tar.gz external_python_setuptools-c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee.tar.bz2 external_python_setuptools-c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee.zip |
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
Diffstat (limited to 'ez_setup.py')
-rwxr-xr-x | ez_setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
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 |