diff options
| author | alvyjudy <alvyjudy@gmail.com> | 2020-05-28 14:32:49 -0400 |
|---|---|---|
| committer | alvyjudy <alvyjudy@gmail.com> | 2020-05-28 14:32:49 -0400 |
| commit | 1459bb4dcdc0f08463c71906952b35275be531de (patch) | |
| tree | 90ce1b183d2783ffe5a8c618fbd6ec8a727139af | |
| parent | 3eb1cecdd24c53bd07911177c52b3de253159709 (diff) | |
| download | python-setuptools-git-1459bb4dcdc0f08463c71906952b35275be531de.tar.gz | |
docs: fixed mistaken explanation
| -rw-r--r-- | docs/userguide/entry_point.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/entry_point.txt b/docs/userguide/entry_point.txt index fe31f446..8190d8e3 100644 --- a/docs/userguide/entry_point.txt +++ b/docs/userguide/entry_point.txt @@ -69,8 +69,8 @@ The syntax for entry points is specified as follows: where ``name`` is the name for the script you want to create, the left hand side of ``:`` is the module that contains your function and the right hand side is the object you want to invoke (e.g. a function). ``type`` specifies the -type of script you want to create. ``setuptools`` currently supports either -``[console_script]`` and ``[gui_script]``. +type of entry point (pertinent to the program that exploits it). ``setuptools`` +natively supports ``[console_script]`` and ``[gui_script]``. .. note:: the syntax is not limited to ``INI`` string as demonstrated above. You can |
