Files
cellxgene/server/cli/cli.py
Colin Megill d16a69e158 bump version to 0.11.0 (#850)
* bump version to 0.11.0

* manually fix version number
2019-07-16 14:27:41 -04:00

15 lines
324 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.11.0", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
def cli():
pass
cli.add_command(launch)
cli.add_command(prepare)