Issue #134: add a bonobo download url command

This enables users on different platforms to download the examples in
the tutorial using the same command.
This commit is contained in:
Michael Penkov
2017-10-28 14:08:53 +02:00
parent bf5f870304
commit 9e86abca60
4 changed files with 80 additions and 1 deletions

View File

@ -69,7 +69,8 @@ setup(
'bonobo.commands': [
'convert = bonobo.commands.convert:register', 'init = bonobo.commands.init:register',
'inspect = bonobo.commands.inspect:register', 'run = bonobo.commands.run:register',
'version = bonobo.commands.version:register'
'version = bonobo.commands.version:register',
'download = bonobo.commands.download:register',
],
'console_scripts': ['bonobo = bonobo.commands:entrypoint']
},