Simple "examples" command that just show examples for now.

This commit is contained in:
Romain Dorgueil
2017-11-28 21:57:08 +01:00
parent 5e0b6567cd
commit 686d1c81b3
11 changed files with 589 additions and 379 deletions

View File

@ -74,9 +74,10 @@ setup(
},
entry_points={
'bonobo.commands': [
'convert = bonobo.commands.convert:ConvertCommand', 'init = bonobo.commands.init:InitCommand',
'convert = bonobo.commands.convert:ConvertCommand', 'download = bonobo.commands.download:DownloadCommand',
'examples = bonobo.commands.examples:ExamplesCommand', 'init = bonobo.commands.init:InitCommand',
'inspect = bonobo.commands.inspect:InspectCommand', 'run = bonobo.commands.run:RunCommand',
'version = bonobo.commands.version:VersionCommand', 'download = bonobo.commands.download:DownloadCommand'
'version = bonobo.commands.version:VersionCommand'
],
'console_scripts': ['bonobo = bonobo.commands:entrypoint']
},