Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/planemo/commands/cmd_docs.py @ 0:26e78fe6e8c4 draft
"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
| author | shellac |
|---|---|
| date | Sat, 02 May 2020 07:14:21 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:26e78fe6e8c4 |
|---|---|
| 1 """Module describing the planemo ``docs`` command.""" | |
| 2 import click | |
| 3 | |
| 4 from planemo.cli import command_function | |
| 5 | |
| 6 DOCS_URL = "http://planemo.readthedocs.io/en/latest/" | |
| 7 | |
| 8 | |
| 9 @click.command("docs") | |
| 10 @command_function | |
| 11 def cli(ctx, **kwds): | |
| 12 """Open Planemo documentation in web browser.""" | |
| 13 click.launch(DOCS_URL) |
