# --- Python bytecode / packaging ---
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
*.egg
dist/
build/
sdist/
wheels/
pip-wheel-metadata/
MANIFEST

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

# --- setuptools-scm writes this at build time ---
src/ds_mcp_server/_version.py

# --- Test / lint / type-check caches ---
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.nox/
.cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
*.cover

# --- Editors / IDEs ---
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# --- Jupyter ---
.ipynb_checkpoints/
*.ipynb_checkpoints

# --- OS / misc ---
*.log
*.tmp

# --- Local personal notes (not for the repo) ---
NOTES.md
notes/
scratch/

