66 lines
585 B
Plaintext
66 lines
585 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.venv*/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE / editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build / packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Project runtime temp/output
|
|
*_tmp/
|
|
frames_in/
|
|
frames_out/
|
|
/tmp/
|
|
# Video and media artifacts
|
|
*.mp4
|
|
*.mkv
|
|
*.avi
|
|
*.mov
|
|
*.m4a
|
|
*.wav
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
|
|
# Keep model and tool binaries out of git
|
|
models/
|
|
*.bin
|
|
*.param
|
|
*.pth
|
|
|
|
# Local env/config
|
|
.env
|
|
.env.*
|
|
|
|
# Downloaded archives
|
|
*.zip
|
|
*.tar
|
|
*.tar.gz
|