# ============================================
# MVola API Library - .gitignore
# ============================================

# -----------------------------------------------
# Python - Bytecode & Runtime
# -----------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# -----------------------------------------------
# Python - Distribution / Packaging
# -----------------------------------------------
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
*.whl
MANIFEST

# -----------------------------------------------
# Python - Virtual Environments
# -----------------------------------------------
venv/
ENV/
env/
.venv/
.env/
env.bak/
venv.bak/

# -----------------------------------------------
# Python - Tests & Coverage
# -----------------------------------------------
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# -----------------------------------------------
# Python - Type checking
# -----------------------------------------------
.mypy_cache/
.pytype/

# -----------------------------------------------
# Documentation (MkDocs)
# -----------------------------------------------
site/

# -----------------------------------------------
# Jupyter Notebook
# -----------------------------------------------
.ipynb_checkpoints

# -----------------------------------------------
# Frontend / Node.js
# -----------------------------------------------
node_modules/
.next/
out/
.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
*.tsbuildinfo
next-env.d.ts
.vercel

# -----------------------------------------------
# Logs
# -----------------------------------------------
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# -----------------------------------------------
# Environment & Secrets
# -----------------------------------------------
.env
.env.test
.env.local
.env.*.local
!.env.example
.secrets.baseline

# -----------------------------------------------
# IDE & Editors
# -----------------------------------------------
# VS Code
.vscode/
.history/
*.code-workspace

# PyCharm / JetBrains
.idea/
*.iml
*.iws
*.ipr
.idea_modules/

# Cursor
.cursor/
.cursorignore

# -----------------------------------------------
# AI Agent Tool Files
# -----------------------------------------------
AGENTS.md
CLAUDE.md

# -----------------------------------------------
# OS Files
# -----------------------------------------------
.DS_Store
Thumbs.db
*.swp
*~
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Desktop.ini

# -----------------------------------------------
# Scratch / Temporary Files
# -----------------------------------------------
t.py
*.tmp
*.bak
