# Python
__pycache__/
*.py[cod]
*.egg-info/
*.egg
.eggs/
build/
dist/
.installed.cfg

# Virtual envs
.venv/
venv/
env/

# Test / coverage
.pytest_cache/
.coverage
htmlcov/
.ruff_cache/

# Models & media (don't ship weights/videos in the repo)
*.pt
*.onnx
*.engine
*.mp4
*.avi
*.mkv
*.mov

# Benchmark / run artifacts
*.json.bench
benchmarks/results/
runs/
_logs/
_dbg/

# IDE / OS
.idea/
.vscode/
.DS_Store
Thumbs.db
