33 lines
305 B
Plaintext
33 lines
305 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Build outputs
|
|
build/
|
|
dist/
|
|
*.spec.bak
|
|
|
|
# Test and runtime outputs
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.csv
|
|
*.xlsx
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS files
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Local configuration overrides
|
|
settings/*.local.json |