91 lines
998 B
Plaintext
91 lines
998 B
Plaintext
# Python
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
usda_vision_system.log*
|
|
|
|
# Storage (recordings)
|
|
storage/
|
|
*.avi
|
|
*.mp4
|
|
*.mov
|
|
|
|
# Configuration (may contain sensitive data)
|
|
config_local.json
|
|
config_production.json
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Camera SDK cache (covered by **/__pycache__/ above)
|
|
# camera_sdk/__pycache__/
|
|
|
|
# Test outputs
|
|
test_output/
|
|
*.test
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.bak
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Old test files (keep in repo for reference)
|
|
# old tests/
|
|
Camera/log/*
|
|
|
|
# Python cache (covered by **/__pycache__/ above)
|
|
# */__pycache__/*
|
|
old tests/Camera/log/*
|
|
old tests/Camera/Data/*
|