Initialize a modern Python project with best practices configuration.
# Initialize Python Project Initialize a modern Python project with best practices configuration. ## What This Command Does Creates a production-ready Python project structure with: 1. **Project Structure** (src layout) 2. **Configuration Files** - `pyproject.toml` with uv, ruff, mypy, pytest settings - `.gitignore` for Python projects - Pre-commit hooks (optional) 3. **Development Tools** - Ruff for linting and formatting - Mypy for type checking - Pytest for testing - uv for dependency management ## Usage When running this command, I will: 1. Ask for proj...