# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class

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

# Packaging
build/
dist/
*.egg-info/
.eggs/
*.egg
pip-wheel-metadata/

# Tests and coverage
.pytest_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/

# Type checking and linting
.mypy_cache/
.ruff_cache/
.pyre/

# Documentation builds
site/

# Editors and operating systems
.vscode/*
!.vscode/settings.json
.idea/
.DS_Store
Thumbs.db
