Files
cellxgene/server/cli/cli.py
Charlotte Weaver 1a5f49239a Release 0.0.4 (#447)
* 0.0.3 bump

* release 0.0.4
2018-11-15 16:43:59 -08:00

15 lines
323 B
Python

import click
from .launch import launch
from .prepare import prepare
@click.group(name="cellxgene", context_settings=dict(max_content_width=85))
@click.version_option(version="0.0.4", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
def cli():
pass
cli.add_command(launch)
cli.add_command(prepare)