aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/__init__.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-12-14 17:37:30 +0000
committerPJ Eby <distutils-sig@python.org>2005-12-14 17:37:30 +0000
commitc7eeb6273fd7593d7bccfbe41f44b5aa2ab17c1d (patch)
tree28394eca5cf8e0f5745ea2fd4eacdfe00743a906 /setuptools/command/__init__.py
parentbd28408ff49d304ae822acf9f46f0b65bb138c04 (diff)
downloadexternal_python_setuptools-c7eeb6273fd7593d7bccfbe41f44b5aa2ab17c1d.tar.gz
external_python_setuptools-c7eeb6273fd7593d7bccfbe41f44b5aa2ab17c1d.tar.bz2
external_python_setuptools-c7eeb6273fd7593d7bccfbe41f44b5aa2ab17c1d.zip
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
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r--setuptools/command/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py
index 7294d55c..3b4024b8 100644
--- a/setuptools/command/__init__.py
+++ b/setuptools/command/__init__.py
@@ -1,7 +1,7 @@
__all__ = [
'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop',
'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts',
- 'sdist', 'setopt', 'test', 'upload',
+ 'sdist', 'setopt', 'test', 'upload', 'install_egg_info',
]