diff options
author | PJ Eby <distutils-sig@python.org> | 2006-09-22 00:09:06 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-09-22 00:09:06 +0000 |
commit | ae347c1ed3e39fb2c00b8b9fc8aedcf507313c20 (patch) | |
tree | 2d8a9c2f40a70b768050625aa200b49d3325ebd2 /setuptools.egg-info | |
parent | 4ef57c26cbeee3f3afd21f86877bbdcadf0f69c1 (diff) | |
download | external_python_setuptools-ae347c1ed3e39fb2c00b8b9fc8aedcf507313c20.tar.gz external_python_setuptools-ae347c1ed3e39fb2c00b8b9fc8aedcf507313c20.tar.bz2 external_python_setuptools-ae347c1ed3e39fb2c00b8b9fc8aedcf507313c20.zip |
Add support for "eggsecutable" headers: a /bin/sh script that is prepended
to an .egg file to allow it to be run as a script on Unix-ish platforms.
(This is mainly so that setuptools itself can have a single-file installer
on Unix, without doing multiple downloads, dealing with firewalls, etc.)
(Backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4051969
Diffstat (limited to 'setuptools.egg-info')
-rwxr-xr-x | setuptools.egg-info/entry_points.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index 4156edb5..fb9081c8 100755 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -30,6 +30,9 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete easy_install = setuptools.command.easy_install:main easy_install-2.4 = setuptools.command.easy_install:main +[setuptools.installation] +eggsecutable = setuptools.command.easy_install:bootstrap + [distutils.commands] bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm rotate = setuptools.command.rotate:rotate @@ -44,10 +47,10 @@ install_egg_info = setuptools.command.install_egg_info:install_egg_info alias = setuptools.command.alias:alias easy_install = setuptools.command.easy_install:easy_install install_scripts = setuptools.command.install_scripts:install_scripts +bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst bdist_egg = setuptools.command.bdist_egg:bdist_egg install = setuptools.command.install:install test = setuptools.command.test:test install_lib = setuptools.command.install_lib:install_lib build_ext = setuptools.command.build_ext:build_ext sdist = setuptools.command.sdist:sdist - |