# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class

# Virtual environments
.venv/
venv/
env/

# Build and packaging artifacts
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/

# Test and coverage outputs
.pytest_cache/
.coverage
.coverage.*
htmlcov/

# Type checker and tooling caches
.mypy_cache/
.ruff_cache/
.tox/
.nox/

# Local environment and secrets
.env
.env.*

# Logs and runtime files
*.log

# Editor/OS files
.DS_Store
.idea/
.vscode/
