Skip to content
Snippets Groups Projects
Commit 8e3b15b8 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Add a group command for bob bio commands

parent 27c72ee3
No related branches found
No related tags found
1 merge request!131Add annotator support
"""The main entry for bob.bio (click-based) scripts.
"""
import click
import pkg_resources
from click_plugins import with_plugins
@with_plugins(pkg_resources.iter_entry_points('bob.bio.cli'))
@click.group()
def bio():
"""Entry for bob.bio commands."""
pass
...@@ -127,6 +127,10 @@ setup( ...@@ -127,6 +127,10 @@ setup(
'bob.db': [ 'bob.db': [
'bio_filelist = bob.bio.base.database.filelist.driver:Interface', 'bio_filelist = bob.bio.base.database.filelist.driver:Interface',
], ],
# main entry for bob cli
'bob.cli': [
'bio = bob.bio.base.script.bio:bio',
],
}, },
# Classifiers are important if you plan to distribute this package through # Classifiers are important if you plan to distribute this package through
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment