diff --git a/scaffoldforge/templates/python/default/cli.py.j2 b/scaffoldforge/templates/python/default/cli.py.j2 new file mode 100644 index 0000000..31acd08 --- /dev/null +++ b/scaffoldforge/templates/python/default/cli.py.j2 @@ -0,0 +1,13 @@ +"""CLI interface for {{ project_name }}. + +Generated from GitHub Issue #{{ issue_number }} +""" + +import click + + +@click.command() +@click.option("--option", help="TODO: Describe option") +def cli(option: str): + """TODO: Implement CLI command.""" + click.echo("{{ project_name }} CLI")