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
« 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.
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.
7## Usage
9```bash
10rhiza-tools --version
11rhiza-tools --help
12```
14## Main modules
16- `rhiza_tools.cli` — The main Typer application and command definitions.
18## Documentation
20For more details, see the [README.md](https://github.com/Jebel-Quant/rhiza-tools/blob/main/README.md).
21"""
23from importlib.metadata import PackageNotFoundError, version
25try:
26 __version__ = version("rhiza-tools")
27except PackageNotFoundError:
28 # Package is not installed, use a fallback or leave undefined
29 __version__ = "unknown"