- Add MSMD.spec PyInstaller configuration file - Update README.md with comprehensive build instructions for macOS, Windows, and Linux - Update .gitignore to exclude PyInstaller build artifacts (build/, dist/) - Successfully tested macOS .app bundle (92 MB) Users can now build platform-specific executables without requiring Python installation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
32 lines
263 B
Plaintext
32 lines
263 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
._*
|
|
|
|
# Application specific
|
|
*.pyc
|
|
|
|
# PyInstaller
|
|
build/
|
|
dist/
|
|
*.spec.bak
|