# Git and version control
.git
.gitignore

# Python
**/__pycache__
**/*.py[cod]
*$py.class
**/*.so
.venv
venv
.env
.env.*
!.env.example

# Build and packaging
*.egg-info
.eggs
dist
build
*.egg

# Testing and coverage
.pytest_cache
.coverage
coverage.xml
htmlcov
.tox
.nox

# IDE and misc
.idea
.vscode
*.swp
*.swo
*~
.DS_Store

# Optional: exclude from build context (uncomment if desired)
# examples/
# ProjectPlan/

# Large local model/data artifacts (not required to run API)
packages/models/datasets/
packages/models/prepared_data/
packages/models/trained_models/

# Local caches and databases
.mypy_cache/
.ruff_cache/
*.db
