update bundled zetuptools with doc changes, change to script setup for Windows XP, and to have the 'develop' command run script setup.

This commit is contained in:
david-sarah
2010-08-02 17:38:15 -07:00
parent 58cce54ada
commit e16c794f19
4 changed files with 46 additions and 13 deletions

View File

@ -20,6 +20,12 @@ class develop(easy_install):
command_consumes_arguments = False # override base
def run(self):
self.old_run()
if sys.platform == "win32":
from setuptools.command.scriptsetup import do_scriptsetup
do_scriptsetup()
def old_run(self):
if self.uninstall:
self.multi_version = True
self.uninstall_link()
@ -34,11 +40,6 @@ class develop(easy_install):
self.setup_path = None
self.always_copy_from = '.' # always copy eggs installed in curdir
def finalize_options(self):
ei = self.get_finalized_command("egg_info")
if ei.broken_egg_info: