# Version control
.git
.gitignore
.github

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
*.py[cod]
*$py.class
.pytest_cache
.coverage
htmlcov
.tox
.mypy_cache
.ruff_cache

# Environment
.env
.venv
env/
venv/
ENV/

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

# Build
dist
build
*.egg-info

# Project specific
examples/
tests/
.plans/
.logfire/
docs/

# macOS
.DS_Store

# Logs
*.log 