diff options
author | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-07-07 16:28:43 +0000 |
---|---|---|
committer | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-07-07 16:28:43 +0000 |
commit | 0b4865e8ee69429e181878bb2897e84e26d965f2 (patch) | |
tree | 06d3d26a04aae3e25b0edc503b24f606cb76baef /ez_setup.py | |
parent | cb32a5c05f312b0889b010c08c4d9bd97feb1743 (diff) | |
download | python-setuptools-0b4865e8ee69429e181878bb2897e84e26d965f2.tar.gz |
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.
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@41090 6015fed2-1504-0410-9fe1-9d1591cc4771
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 a0367e2..674138d 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 |