summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-08-10 09:04:34 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-08-10 09:04:34 -0400
commitf6f1221d96577a7ca99170df4fac572e2093f07e (patch)
treeca256c797a9bec897082a33006e63b1c69c99426 /docs
parent183efcc46f5d13eafe67c5ad7853916c7c147673 (diff)
downloadpython-setuptools-bitbucket-f6f1221d96577a7ca99170df4fac572e2093f07e.tar.gz
Issue 60: Implemented experimental opt-in support for using native launchers rather than installing launcher executables. My initial experience with this technique has been very positive.
Diffstat (limited to 'docs')
-rw-r--r--docs/easy_install.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/easy_install.txt b/docs/easy_install.txt
index 12bc73ea..92e770b7 100644
--- a/docs/easy_install.txt
+++ b/docs/easy_install.txt
@@ -96,6 +96,15 @@ sections below on `Command-Line Options`_ and `Configuration Files`_. You
can pass command line options (such as ``--script-dir``) to
``ez_setup.py`` to control where ``easy_install.exe`` will be installed.
+Setuptools also supports deferring to an external launcher such as
+`pylauncher <https://bitbucket.org/pypa/pylauncher>`_ for launching scripts.
+Enable this experimental functionality by setting the
+``SETUPTOOLS_USE_PYLAUNCHER`` environment variable. Setuptools will then not
+install its own launcher executable, but will install scripts as simple
+scripts with a .py (or .pyw) extension appended. If these extensions are
+associated with the pylauncher and listed in the PATHEXT environment variable,
+these scripts can then be invoked simply and directly just like any other
+executable.
Downloading and Installing a Package