Show HN: Pyrig – One command to set up a production-ready Python project pyrig – Production-ready Python project infrastructure in three commands I built pyrig to stop spending hours setting up the same project infrastructure repeatedly. uv init uv add pyrig uv run pyrig init You get: source structure with a Typer CLI, pytest with 90% coverage enforcement, GitHub Actions (CI, release, deploy), MkDocs site, git hooks, Containerfile, and all the config files — pyproject.toml, .gitignore, branch protection, issue templates, everything for a full Python project. Ships with all of Astral's tools (uv, ruff with all rules enabled, ty), plus pytest-cov, bandit, pip-audit, rumdl, prek, MkDocs Material, and Podman. Everything is pre-configured and wired into CI/CD and git hooks from the start. The interesting part is what happens after scaffolding. pyrig isn't a one-shot template generator. Every config is a Python class. Running "pyrig mkroot" regenerates and validates all con...