- Add __main__ guard to cli.py for pyinstaller packaging - Document clean-venv build producing ~11 MB binary - Add *.spec to .gitignore - Exclude heavy stdlib modules in build command
27 lines
259 B
Plaintext
27 lines
259 B
Plaintext
# --- Python ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
*.spec
|
|
|
|
# --- Virtual environment ---
|
|
.venv/
|
|
venv/
|
|
|
|
# --- IDE / editors ---
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# --- OS ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Project specific ---
|
|
config/config.yaml
|