# Python cache
**/__pycache__/
*.py[cod]
*.pyo
*.pyd

# Virtual environments
.env
.venv
venv/
env/

# Build artifacts
build/
dist/
*.egg-info/
*.egg

# Pytest
.pytest_cache/

# Mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Ruff
.ruff_cache/

# Coverage
.coverage
htmlcov/
coverage.xml

# IDE / Editor
.vscode/
.idea/
*.iml
*.code-workspace

# OS-specific
.DS_Store
Thumbs.db
