# Git
.git
.gitignore
.gitattributes

# Documentation
# README*.md  # Keep README.md for pyproject.toml
CHANGELOG.md
CLAUDE.md
LICENSE

# Docker
Dockerfile*
docker-compose*.yml
.dockerignore

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

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

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

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

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
logs/
*.log

# Data
data/
backups/

# Test coverage
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Security
security-report.json
*.pem
*.key
*.crt

# Temporary files
tmp/
temp/
*.tmp

# Makefile (not needed in container)
Makefile

# Scripts (not needed in container)
scripts/
hooks/

# Tests (needed for running tests in container)
# tests/

# Development files
pytest.ini
.pre-commit-config.yaml
