[cli] First draft implementation of "convert" command, which builds a simple graph of reader+writer and executes it.

This commit is contained in:
Romain Dorgueil
2017-07-16 18:45:49 +02:00
parent 53d6ac5887
commit 3e961776e3
4 changed files with 65 additions and 3 deletions

View File

@ -67,8 +67,8 @@ setup(
},
entry_points={
'bonobo.commands': [
'init = bonobo.commands.init:register', 'run = bonobo.commands.run:register',
'version = bonobo.commands.version:register'
'convert = bonobo.commands.convert:register', 'init = bonobo.commands.init:register',
'run = bonobo.commands.run:register', 'version = bonobo.commands.version:register'
],
'console_scripts': ['bonobo = bonobo.commands:entrypoint']
},