# Ignore Git files
.git
.gitignore

# Ignore Python cache and virtual environments
__pycache__/
*.pyc
*.pyo
*.pyd
.venv/
venv/
env/

# Ignore IDE and OS files
.idea/
.vscode/
*.DS_Store

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

# Ignore test files and coverage reports
tests/
.pytest_cache/
.coverage

# Ignore local data generated by RuneLog
.registry/
.mlruns/
