# Ignore Python cache files
__pycache__/
*.py[cod]
*$py.class

# Ignore virtual environments
venv/
.env/
.env.*

# Ignore distribution/build directories
build/
dist/
*.egg-info/
.eggs/
wheels/

# Ignore IDE/editor settings
.vscode/
.idea/
*.swp
*.swo
*~

# Ignore test coverage reports
.coverage
htmlcov/
.cache/

# Ignore mypy and ruff cache
.mypy_cache/
.dmypy.json
ruff_cache/

# Ignore pytest cache
.pytest_cache/

# Ignore logs
*.log

# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/

# Ignore temporary files
*.tmp
*.bak
*.swp
*.swo

# Ignore system files
.DS_Store
Thumbs.db