# Python
__pycache__/
*.py[cod]
*.pyo
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
MANIFEST

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

# uv
.python-version

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
full_ci_repro.txt

# Benchmark run output (generated per-run; the committed baseline lives at
# tests/benchmarks/baseline.json, not here)
tests/benchmarks/results/

# Type checking
.mypy_cache/
.ruff_cache/

# Distribution / packaging
*.whl
*.tar.gz

# Local-machine diagnostic scripts (never imported by production code, not
# part of the installable package — see quor/pipeline/tee.py's tee mechanism
# docs for what scripts/test_tee_permissions.py is for). Excluded from git so
# it can't accidentally ship in a release sdist; also excluded via
# [tool.hatch.build.targets.sdist] in pyproject.toml as a second guard.
scripts/test_tee_permissions.py

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

# OS
.DS_Store
Thumbs.db
