- Added build.py script to automate the packaging process for macOS and Windows. - Created CursorKeepAlive.mac.spec and CursorKeepAlive.win.spec for application specifications. - Updated .gitignore to exclude build artifacts and IDE files. - Enhanced directory structure for output files and included configuration file handling in the build process.
24 lines
191 B
Plaintext
24 lines
191 B
Plaintext
# PyInstaller
|
|
build/
|
|
dist/
|
|
*.spec
|
|
!CursorKeepAlive.mac.spec
|
|
!CursorKeepAlive.win.spec
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Mac
|
|
.DS_Store
|
|
|
|
venv/
|