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 | a4b3d5c628a0e05844688acd1867f177348b28ee (patch) | |
| tree | 2d8a9c2f40a70b768050625aa200b49d3325ebd2 /setup.py | |
| parent | ceaf9dcbe9954b16266ee40c71df67f7c058409f (diff) | |
| download | python-setuptools-bitbucket-a4b3d5c628a0e05844688acd1867f177348b28ee.tar.gz | |
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)
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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( - - - |
