| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A small Python starter with strict defaults, fast feedback, and a package layout that scales past the first weekend.
The goal is simple: start from a clean baseline, keep the toolchain boring, and make quality checks cheap enough to run all the time.
make setup-dev
make check
uv run python -m python_template --help
uv run python -m python_template helloSample output:
Let's build something fun, Yujeong.
| Command | Purpose |
|---|---|
| make setup | Install runtime dependencies |
| make setup-dev | Install runtime and development dependencies |
| make format | Format the codebase with Ruff |
| make lint | Run Ruff lint checks |
| make lint-fix | Run Ruff and apply safe fixes |
| make typecheck | Run Pyright in strict mode |
| make test | Run pytest |
| make test-cov | Run pytest with coverage |
| make check | Run format, lint, typecheck, and tests |
| make build | Build the wheel and sdist |
| make lock | Refresh uv.lock without upgrading |
| make update | Upgrade dependencies and refresh uv.lock |
.
├── .github/workflows/
├── src/python_template/
├── tests/
├── .pre-commit-config.yaml
├── Makefile
├── pyproject.toml
└── uv.lock
If your real project wants agent-specific instructions, add AGENTS.md and/or CLAUDE.md later with project-specific guidance. This template does not ship opinionated defaults for them.
This template is intentionally strict by default:
If a real project constraint justifies relaxing a rule, change it deliberately. The default posture is to keep the baseline tight.
The repository ships with three focused workflows:
MIT.
| Back | FazBrowse Home | New Git URL |