A simple Python project template, it's really only made to save me time when starting a new project, and remind me of my own current best practice. Rather than as an exemplar of actual best practice.
uv syncTemplateProject/
├── src/ # Source code
├── tests/ # Unit tests
├── requirements.txt # Project dependencies
├── pyproject.toml # Project metadata and build configuration
└── README.md # This file
from template_project import main
main.run()pytestMIT