# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
*.egg

# Virtual envs
.venv/
venv/
env/

# Testing
.pytest_cache/
.coverage
htmlcov/

# traceix runtime (fixtures are tracked — commit them for CI replay)
.traceix/.cache

# IDE
.idea/
.vscode/
*.swp

# Secrets — never commit
.env
.env.*
!.env.example

# macOS
.DS_Store
