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

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

# uv
.python-version

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

# Testing
.pytest_cache/
.coverage
htmlcov/

# Type checking
.mypy_cache/
.pyre/
.pytype/

# Linting
.ruff_cache/

# Jupyter
.ipynb_checkpoints/

# IDEs
.vscode/
.idea/

# OS files
.DS_Store
Thumbs.db

# Logs
*.log

# Environment variables
.env

# Generated runtime data (FAISS index + sidecar, SQLite db, etc.)
data/
*.db
*.sqlite
*.sqlite3

# Website (Next.js)
website/node_modules/
website/.next/
website/.env.local

# Coverage
coverage.xml

# Hatch
.hatch/

# PyInstaller
*.manifest
*.spec