From c7eeb6273fd7593d7bccfbe41f44b5aa2ab17c1d Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Wed, 14 Dec 2005 17:37:30 +0000 Subject: Added an internal ``install_egg_info`` command to use as part of old-style ``install`` operations, that installs an ``.egg-info`` directory with the package. This is a preliminary step to implementing "install --single-version-externally-managed" for use with bdist_* commands and Debian. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041670 --- setuptools/command/install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setuptools/command/install.py') diff --git a/setuptools/command/install.py b/setuptools/command/install.py index 6a34ab54..51d4ffe0 100644 --- a/setuptools/command/install.py +++ b/setuptools/command/install.py @@ -50,9 +50,9 @@ class install(_install): cmd.run() setuptools.bootstrap_install_from = None - - - + sub_commands = _install.sub_commands + [ + ('install_egg_info', lambda self: True), + ] -- cgit v1.2.3