aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-09-22 00:09:06 +0000
committerPJ Eby <distutils-sig@python.org>2006-09-22 00:09:06 +0000
commitae347c1ed3e39fb2c00b8b9fc8aedcf507313c20 (patch)
tree2d8a9c2f40a70b768050625aa200b49d3325ebd2 /setup.py
parent4ef57c26cbeee3f3afd21f86877bbdcadf0f69c1 (diff)
downloadexternal_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 'setup.py')
-rwxr-xr-xsetup.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 4aa44c51..c7168682 100755
--- a/setup.py
+++ b/setup.py
@@ -84,10 +84,13 @@ setup(
"easy_install = setuptools.command.easy_install:main",
"easy_install-%s = setuptools.command.easy_install:main"
% sys.version[:3]
- ],
+ ],
"setuptools.file_finders":
- ["svn_cvs = setuptools.command.sdist:_default_revctrl"]
+ ["svn_cvs = setuptools.command.sdist:_default_revctrl"],
+
+ "setuptools.installation":
+ ['eggsecutable = setuptools.command.easy_install:bootstrap'],
},
classifiers = [f.strip() for f in """
@@ -118,6 +121,3 @@ setup(
-
-
-