diff options
author | tarek <none@none> | 2009-07-21 15:37:46 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-07-21 15:37:46 +0200 |
commit | 9c0d20c2ede26f8c4e182c3f6f6790c11259143e (patch) | |
tree | db392f07fdd0fb5cab03cf020fe1e0e589519605 | |
parent | 725f8dc7313fb930dc81a5f74dc09569addaac73 (diff) | |
download | external_python_setuptools-9c0d20c2ede26f8c4e182c3f6f6790c11259143e.tar.gz external_python_setuptools-9c0d20c2ede26f8c4e182c3f6f6790c11259143e.tar.bz2 external_python_setuptools-9c0d20c2ede26f8c4e182c3f6f6790c11259143e.zip |
populating md5 hashes and default url location
--HG--
branch : distribute
extra : rebase_source : 998bc889ba6d41e4051df8cdc3c36e273b78118b
-rwxr-xr-x | ez_setup.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ez_setup.py b/ez_setup.py index 2835c19a..be9ec103 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -22,13 +22,14 @@ except ImportError: from md5 import md5 DEFAULT_VERSION = "0.6" -DEFAULT_URL = "http://pypi.python.org/packages/%s/d/distribute/" % sys.version[:3] +#DEFAULT_URL = "http://pypi.python.org/packages/%s/d/distribute/" % sys.version[:3] +DEFAULT_URL = "http://bitbucket.org/tarek/distribute/downloads/' md5_data = { - 'distribute-0.6-py2.3.egg': '', - 'distribute-0.6-py2.4.egg': '', - 'distribute-0.6-py2.5.egg': '', - 'distribute-0.6-py2.6.egg': '', + 'distribute-0.6-py2.3.egg': '3fddec6a97c601112612f04d1bfdc3c4', + 'distribute-0.6-py2.4.egg': '743af8420ff2febad28e8f88b43af642', + 'distribute-0.6-py2.5.egg': '8da62077b114327d3c73f00506dc638e', + 'distribute-0.6-py2.6.egg': '2eba87b31ae6530604cf09ccc136f62d', } def _validate_md5(egg_name, data): |