Coverage for src / rhiza_tools / __main__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-23 01:10 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-23 01:10 +0000
1"""Rhiza tools module entry point.
3This module serves as the entry point for the Rhiza Tools command-line interface (CLI).
4When the package is executed as a script (python -m rhiza_tools), it starts the Typer
5application defined in rhiza_tools.cli.
7Example:
8 Run as a module::
10 $ python -m rhiza_tools bump patch
11 $ python -m rhiza_tools --help
13 Or use the installed entry point::
15 $ rhiza-tools bump patch
16 $ rhiza-tools --help
17"""
19from rhiza_tools.cli import app
21if __name__ == "__main__":
22 app()