Coverage for src/rhiza_tools/__main__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-07-16 12:49 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-07-16 12:49 +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 --help
11 $ python -m rhiza_tools --version
13 Or use the installed entry point::
15 $ rhiza-tools --help
16 $ rhiza-tools --version
17"""
19from rhiza_tools.cli import app
21if __name__ == "__main__":
22 app()