- Fixed package name from auto-readme-cli to project-scaffold-cli - Fixed dependencies to match project-scaffold-cli requirements - Fixed linting import sorting issues in test files
14 lines
213 B
Django/Jinja
14 lines
213 B
Django/Jinja
"""Main CLI entry point."""
|
|
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
def main():
|
|
"""Main entry point for {{ project_name }}."""
|
|
click.echo("Welcome to {{ project_name }}!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|