tasteful-python/src/tasteful_python/cli/__init__.py

13 lines
408 B
Python

# SPDX-FileCopyrightText: 2023-present Jeff Moe <moe@spacecruft.org>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
import click
from tasteful_python.__about__ import __version__
@click.group(context_settings={"help_option_names": ["-h", "--help"]}, invoke_without_command=True)
@click.version_option(version=__version__, prog_name="tasteful-python")
def tasteful_python():
click.echo("Hello world!")