diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-06 10:48:46 +0200 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-06 10:48:46 +0200 |
commit | e8319c9ece0460cb905e92c31756fd86d6b88cc7 (patch) | |
tree | 739417c1b4666ac297a4c63ce8e7b4839b57125c /setuptools/command/easy_install.py | |
parent | a78c722a5cb3756dd0fb83badc66c50fda85c144 (diff) | |
download | external_python_setuptools-e8319c9ece0460cb905e92c31756fd86d6b88cc7.tar.gz external_python_setuptools-e8319c9ece0460cb905e92c31756fd86d6b88cc7.tar.bz2 external_python_setuptools-e8319c9ece0460cb905e92c31756fd86d6b88cc7.zip |
Add docstring
--HG--
extra : rebase_source : 79c95e70593d4e4177c3c1f9625e427d9ce0a16c
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index f82125d6..6c1ea631 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1781,6 +1781,11 @@ def fix_jython_executable(executable, options): class ScriptWriter(object): + """ + Encapsulates behavior around writing entry point scripts for console and + gui apps. + """ + template = ( "# EASY-INSTALL-ENTRY-SCRIPT: %(spec)r,%(group)r,%(name)r\n" "__requires__ = %(spec)r\n" |