62 lines
584 B
Plaintext
62 lines
584 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Test / lint / type check
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Runtime data and model cache
|
|
data/
|
|
models/
|
|
openocr_output/
|
|
.cache/
|
|
.huggingface/
|
|
.modelscope/
|
|
|
|
# Large model weights (downloaded at runtime)
|
|
*.onnx
|
|
*.pth
|
|
*.pt
|
|
*.bin
|
|
*.safetensors
|
|
*.whl
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|