# {{ project_name }}
{% if description %}{{ description }}{% else %}A Python CLI application using uv{% endif %}
{% if author %}Author: {{ author }}{% endif %}
## Quick Start
```bash
# Install dependencies
uv pip install -r requirements.txt
# Run the application
python src/main.py
# Run tests
pytest
# Format code
ruff format .
# Lint code
ruff check .
```
## Development
This project uses `uv` for dependency management and `ruff` for code formatting and linting.
## License
MIT