# Git
.git
.gitignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
env.bak/
venv.bak/
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/

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

# OS
.DS_Store
Thumbs.db

# Documentation
*.md
!README.md
docs/

# Tests (optional - remove if you want tests in container)
tests/

# Development files
.python-version
.env
.env.local

# Build artifacts
build/
dist/
*.egg-info/

# Logs
*.log