a0c8464e58
Build Package / build (ubuntu-latest) (push) Failing after 1s
CodeQL / Analyze (python) (push) Failing after 1s
Core Typecheck / core-typecheck (push) Failing after 1s
Linting / lint (push) Failing after 1s
llama-dev tests / test-llama-dev (push) Failing after 1s
Publish Sub-Package to PyPI if Needed / publish_subpackage_if_needed (push) Has been skipped
Sync Docs to Developer Hub / sync-docs (push) Failing after 0s
Build Package / build (windows-latest) (push) Has been cancelled
16 lines
277 B
Python
16 lines
277 B
Python
import click
|
|
|
|
from .bump import bump
|
|
from .cmd_exec import cmd_exec
|
|
from .info import info
|
|
|
|
|
|
@click.group(short_help="Manage packages in the monorepo")
|
|
def pkg():
|
|
pass # pragma: no cover
|
|
|
|
|
|
pkg.add_command(info)
|
|
pkg.add_command(cmd_exec, name="exec")
|
|
pkg.add_command(bump)
|