a0b65e3fcb
Lint & Test / test (push) Successful in 2m21s
Declutters the repo root by consolidating build-common.sh, build-dist.sh, build-dist-windows.sh, build-dist.ps1, and installer.nsi into build/. Updates all path references in CI workflows, NSIS installer, and documentation.
85 lines
814 B
Plaintext
85 lines
814 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
# Build output artifacts (LedGrab/, *.zip, *.exe, *.tar.gz, cached downloads)
|
|
build/LedGrab/
|
|
build/*.zip
|
|
build/*.exe
|
|
build/*.tar.gz
|
|
build/*.msi
|
|
build/python-embed-*.zip
|
|
build/pip-wheels/
|
|
build/win-wheels/
|
|
build/tk-extract/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.claude/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
*.log.*
|
|
|
|
# Runtime data
|
|
data/
|
|
*.db
|
|
*.sqlite
|
|
*.json.bak
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Home Assistant
|
|
homeassistant/.storage/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
temp/
|
|
tmp/
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|