diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-07 06:21:36 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-07 06:21:36 -0400 |
commit | c05e0003478a36d698e938121978aafb43223599 (patch) | |
tree | a0ad91125ca96cc4052de529b108861943639bb2 | |
parent | 81329a6d0753e879e67f279f5f0e7a4ef3346966 (diff) | |
download | external_python_setuptools-c05e0003478a36d698e938121978aafb43223599.tar.gz external_python_setuptools-c05e0003478a36d698e938121978aafb43223599.tar.bz2 external_python_setuptools-c05e0003478a36d698e938121978aafb43223599.zip |
Corrected syntax in setuptools documentation around console scripts with extra requirements. Fixes #62.
-rw-r--r-- | docs/setuptools.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt index a9368caa..6dfe0b4c 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -713,10 +713,11 @@ declare it like this, so that the "PDF" requirements are only resolved if the name="Project-A", ... entry_points = { - 'console_scripts': - ['rst2pdf = project_a.tools.pdfgen [PDF]'], - ['rst2html = project_a.tools.htmlgen'], + 'console_scripts': [ + 'rst2pdf = project_a.tools.pdfgen [PDF]', + 'rst2html = project_a.tools.htmlgen', # more script entry points ... + ], } ) |