# Git
.git
.gitignore

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

# Virtual environments
.venv
venv
ENV

# Testing
.pytest_cache
.coverage
htmlcov
.tox

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

# Documentation
docs/_build

# Local config
.claude
*.md
!README.md

# Tests (not needed in image)
tests/
