mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-17 14:58:14 +00:00
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:
@ -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:
|
||||
|
Reference in New Issue
Block a user