# VCS
.git
.gitignore

# Python cache/build
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/

# Virtual environments
.venv/
venv/

# Tooling cache
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage

# Local runtime data
.env
data/
*.db

# IDE files
.vscode/
.idea/
