[Python-checkins] r53196 - in sandbox/branches/setuptools-0.6: setup.py setuptools/command/easy_install.py

phillip.eby python-checkins at python.org
Fri Dec 29 18:51:28 CET 2006


Author: phillip.eby
Date: Fri Dec 29 18:51:27 2006
New Revision: 53196

Modified:
   sandbox/branches/setuptools-0.6/setup.py
   sandbox/branches/setuptools-0.6/setuptools/command/easy_install.py
Log:
Switch default package-index to cheeseshop.python.org, and make 
setuptools' home page its cheeseshop page.  (backport from trunk)


Modified: sandbox/branches/setuptools-0.6/setup.py
==============================================================================
--- sandbox/branches/setuptools-0.6/setup.py	(original)
+++ sandbox/branches/setuptools-0.6/setup.py	Fri Dec 29 18:51:27 2006
@@ -23,7 +23,7 @@
     license="PSF or ZPL",
     long_description = open('README.txt').read(),
     keywords = "CPAN PyPI distutils eggs package management",
-    url = "http://peak.telecommunity.com/DevCenter/setuptools",
+    url = "http://cheeseshop.python.org/pypi/setuptools",
     test_suite = 'setuptools.tests',
     packages = find_packages(),
     package_data = {'setuptools':['*.exe']},

Modified: sandbox/branches/setuptools-0.6/setuptools/command/easy_install.py
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools/command/easy_install.py	(original)
+++ sandbox/branches/setuptools-0.6/setuptools/command/easy_install.py	Fri Dec 29 18:51:27 2006
@@ -156,7 +156,7 @@
                 else:
                     self.all_site_dirs.append(normalize_path(d))
         if not self.editable: self.check_site_dir()
-        self.index_url = self.index_url or "http://www.python.org/pypi"
+        self.index_url = self.index_url or "http://cheeseshop.python.org/pypi"
         self.shadow_path = self.all_site_dirs[:]
         for path_item in self.install_dir, normalize_path(self.script_dir):
             if path_item not in self.shadow_path:


More information about the Python-checkins mailing list