21 lines
243 B
Python
21 lines
243 B
Python
import click
|
|
|
|
|
|
@click.group()
|
|
def pip():
|
|
...
|
|
|
|
|
|
@pip.command(name="foo")
|
|
def install():
|
|
click.echo("Installing...")
|
|
|
|
|
|
@pip.command(name="nonfoo")
|
|
def uninstall():
|
|
click.echo("Uninstalling...")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pip()
|