mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 05:07:55 +08:00
15 lines
323 B
Python
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.7.0", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
|
|
def cli():
|
|
pass
|
|
|
|
|
|
cli.add_command(launch)
|
|
cli.add_command(prepare)
|