Python Project Creator
Critical Corrections
Use 'uv' instead of 'pip'
- ✗ Don't: pip install, pip freeze
- ✓ Do: uv pip install, uv pip freeze (uv is faster and more modern)
Always use pytest, never unittest
- ✗ Don't: unittest framework
- ✓ Do: pytest for all testing needs
Overview
This skill creates well-structured Python projects with best practices for dependency management, testing, and code organization. It sets up virtual environments, installs dependencies, and con
[Description truncada. Veja o README completo no GitHub.]