Commit c05e0003 authored by Jason R. Coombs's avatar Jason R. Coombs

Corrected syntax in setuptools documentation around console scripts with extra...

Corrected syntax in setuptools documentation around console scripts with extra requirements. Fixes #62.
parent 81329a6d
......@@ -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 ...
],
}
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment