${description}
pip install ${project_name}
With uv:
uv pip install ${project_name}
import ${project_name}
# Add usage examples here
This project uses modern Python tooling:
# Clone the repository
git clone https://github.com/${github_username}/${project_name}.git
cd ${project_name}
# Install development dependencies
uv pip install -e ".[dev]"
pytest
ruff check .
ruff format .