# -----------------------------------------------------------------------------
# Version control
# -----------------------------------------------------------------------------
.git
.gitignore
.gitattributes

# -----------------------------------------------------------------------------
# Python cache / bytecode
# -----------------------------------------------------------------------------
__pycache__/
*.pyc
*.pyo
*.pyd

# -----------------------------------------------------------------------------
# Build artifacts
# -----------------------------------------------------------------------------
*.egg-info/
.eggs/
build/
dist/
wheels/
*.whl

# -----------------------------------------------------------------------------
# Virtual environments
# -----------------------------------------------------------------------------
.venv/
venv/
ENV/

# -----------------------------------------------------------------------------
# Logs and coverage
# -----------------------------------------------------------------------------
*.log
*.out
*.err
coverage/
htmlcov/
.pytest_cache/

# -----------------------------------------------------------------------------
# Editor / IDE junk
# -----------------------------------------------------------------------------
*.swp
*.swo
*.bak
*~
.vscode/
.idea/

# -----------------------------------------------------------------------------
# OS junk
# -----------------------------------------------------------------------------
.DS_Store
Thumbs.db

# -----------------------------------------------------------------------------
# Other
# -----------------------------------------------------------------------------
Dockerfile
.dockerignore

