-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Description
In my current use case I'm capturing the help output of a command within a project I'm documenting.
Something like so:
.. command-output:: python -m package.command --help
Which builds to:
$ python -m package.command --help
...
This works as expected, which is great. My problem however is that I really want to have the name of the setuputil's script entry-point appear at the prompt instead, as this is realistically how most users will invoke the command. It would be nice if an option could be added to modify/override the command that appears at the prompt.
kinow