# Version control
.git
.gitignore
.github

# Python virtual environment
.venv

# Compiled Python files
__pycache__
**/__pycache__
*.pyc
*.pyo
*.pyd

# Test artifacts
.pytest_cache
.mypy_cache
.ruff_cache
htmlcov
.coverage
coverage.xml

# Build outputs
dist
build
*.egg-info
site

# Development / documentation
tests
test_pdfs
docs

# Environment files (never bake secrets into images)
.env
.env.*
!.env.example

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