# Version control
.git/
.gitignore
.github/
# Environment
.env
.venv/
venv/
env/
.python-version
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Project configuration
smithery.yaml
.dockerignore
# Documentation
README.md
LICENSE
docs/
*.md
# Testing
tests/
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
**/.pytest_cache/
**/.coverage
htmlcov/
# Build artifacts
*.egg-info/
dist/
build/
# Temporary files
*.log
*.tmp
.cache/
temp/
# Keep only what's needed
# (Don't ignore these files)
!pyproject.toml
!uv.lock
!src/
!entrypoint.sh