# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
ENV/

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

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
coverage.xml
*.cover

# Type checkers
.pyright/
.pyrightcache/
.mypy_cache/

# Lint
.ruff_cache/

# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# uv
.uv/
uv.lock
# (uv.lock should be committed for apps; for libraries some teams ignore — we keep it tracked)
!uv.lock

# Local secrets — never commit
.env
.env.local
*.key
secrets.json

# Test artifacts
.cassettes/
