Metadata-Version: 2.4
Name: devr
Version: 0.0.0
Summary: Run a full Python dev preflight (ruff format/lint, typecheck, tests, coverage) inside your project venv.
Project-URL: Homepage, https://github.com/srichs/devr
Project-URL: Repository, https://github.com/srichs/devr
Project-URL: Issues, https://github.com/srichs/devr/issues
Author-email: srichs <srichs@pm.me>
License: MIT
License-File: LICENSE
Requires-Python: >=3.9
Requires-Dist: tomli>=2.0; python_version < '3.11'
Requires-Dist: typer>=0.12
Description-Content-Type: text/markdown

# devr

**devr** runs your Python dev “preflight” — lint, formatting, type checking, tests, and coverage — **inside your project’s virtualenv**.

It’s designed to be easy for developers:
- One install (recommended via `pipx`)
- One command to set up a repo: `devr init`
- One command to gate changes: `devr check`
- Optional pre-commit hook that runs the same gate on staged files

---

## Install

Recommended:

```bash
pipx install devr
