simple-modern-uv is a minimal yet production-ready Python project template that uses the uv toolchain to streamline dependency management, virtualenvs, and packaging. It aims to be “small but serious,” giving you the essentials—testing, linting, type checking, formatting, GitHub Actions—without burying you in boilerplate. The layout is opinionated around a pyproject.toml so configuration is centralized and easy to inspect. Defaults encourage good hygiene from day one, including reproducible builds and a clean release workflow to PyPI. Because the template is intentionally compact, it’s easy to understand and customize for libraries, CLIs, or small services. It’s a fast way to start new Python projects with modern tooling and guardrails already in place.
Features
- uv-based environment and dependency management for fast, reproducible builds
 - pyproject-only configuration with sane defaults and minimal clutter
 - Prewired linting and formatting (e.g., Ruff) plus unit testing setup
 - Type checking ready out of the box and CI workflows via GitHub Actions
 - Publishing scaffolding for clean releases to PyPI
 - Simple structure that’s easy to customize for libraries or CLIs