adds version command, adds bb alias

This commit is contained in:
Romain Dorgueil
2017-04-21 11:55:20 +02:00
parent 5e4af7e19b
commit 24e009d890
5 changed files with 55 additions and 30 deletions

View File

@ -57,11 +57,13 @@ data_files = [
entry_points = {
'console_scripts': [
'bonobo = bonobo.commands:entrypoint'
'bonobo = bonobo.commands:entrypoint',
'bb = bonobo.commands:entrypoint',
],
'bonobo.commands': [
'init = bonobo.commands.init:register',
'run = bonobo.commands.run:register',
'version = bonobo.commands.version:register',
],
'edgy.project.features': [
'bonobo = bonobo.ext.edgy.project.feature:BonoboFeature'