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

5 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-07-16 12:49 +0000

1"""Rhiza Tools — CI helper CLI for the Rhiza ecosystem. 

2 

3Rhiza Tools is the shared helper CLI for Rhiza-managed projects. Its former 

4commands have moved elsewhere in the ecosystem, so it currently exposes no 

5subcommands. 

6 

7## Usage 

8 

9```bash 

10rhiza-tools --version 

11rhiza-tools --help 

12``` 

13 

14## Main modules 

15 

16- `rhiza_tools.cli` — The main Typer application and command definitions. 

17 

18## Documentation 

19 

20For more details, see the [README.md](https://github.com/Jebel-Quant/rhiza-tools/blob/main/README.md). 

21""" 

22 

23from importlib.metadata import PackageNotFoundError, version 

24 

25try: 

26 __version__ = version("rhiza-tools") 

27except PackageNotFoundError: 

28 # Package is not installed, use a fallback or leave undefined 

29 __version__ = "unknown"