Coverage for src/rhiza_tools/__main__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-06-30 13:37 +0000

1"""Rhiza tools module entry point. 

2 

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. 

6 

7Example: 

8 Run as a module:: 

9 

10 $ python -m rhiza_tools bump patch 

11 $ python -m rhiza_tools --help 

12 

13 Or use the installed entry point:: 

14 

15 $ rhiza-tools bump patch 

16 $ rhiza-tools --help 

17""" 

18 

19from rhiza_tools.cli import app 

20 

21if __name__ == "__main__": 

22 app()