# Git files
.git
.gitignore
.github

# Python cache
__pycache__
*.py[cod]
*$py.class
*.so
.Python

# Virtual environments
venv/
env/
ENV/
.venv

# Environment files (users provide their own)
.env
*.env

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

# Testing and development
tests/
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.ruff_cache/

# Documentation and archives
docs/
archive/

# OS files
.DS_Store
Thumbs.db

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