# Version control
.git/
.gitignore

# Python artifacts
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
dist/
build/
.eggs/

# Virtual environments
.venv/
venv/
env/
ENV/

# Secrets — never bake these into the image
.env
.env.local
.env.*.local
*.key
*.pem
*.crt
secrets/

# Dev / CI tooling (not needed at runtime)
tests/
.github/
.pre-commit-config.yaml
.ruff_cache/
.mypy_cache/
.pytest_cache/
.tox/
.nox/

# Docs and assets (not needed at runtime)
docs/
assets/

# Editor / OS noise
.vscode/
.idea/
.claude/
.DS_Store
Thumbs.db
*.swp
*.swo
