# Git
.git
.gitignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
# dist/ - needed for MCP Docker build with wheels
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

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

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Linting and formatting
.ruff_cache/
.mypy_cache/
.pylint.d/

# Local development
.local_development/
*.log
logs/

# Documentation build
docs/_build/

# Jupyter Notebook
.ipynb_checkpoints

# Security
*.pem
*.key
*.crt

# Database
*.db
*.sqlite3

# Memory system data (for development)
.local/
memory_data/
kuzu_db/
qdrant_data/

# Reports
bandit-report.json
ruff-report.json
pylint-report.json
