# Version control
.git
.gitignore

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

# Virtual environments
.venv
venv
env

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

# Tests
tests
.pytest_cache
.coverage
htmlcov

# Documentation (keep README.md for pyproject.toml metadata)
*.md
!README.md
docs
LICENSE

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Environment and config
.env
.env.*
!.env.example

# Repos cloned during ingestion
repos

# OS
.DS_Store
Thumbs.db
