refactor: use typer for CLI argument parsing

- Replaces `argparse` with `typer` for command-line argument
  parsing to improve CLI interface and maintainability.
- Converts commands to subcommands using `typer.Typer()`.
- Streamlines CLI structure and enhances user experience.
This commit is contained in:
2025-07-16 11:29:31 +02:00
parent 1d7bc19965
commit 6ca389d5cb
9 changed files with 160 additions and 154 deletions

View File

@@ -19,6 +19,7 @@ pyyaml = "^6.0.2"
pydantic = "^2.11.3"
rich = "^14.0.0"
gitpython = "^3.1.44"
typer = "^0.16.0"
[tool.poetry.group.dev.dependencies]
twine = "^6.1.0"