-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch pyinstaller changes. Use a single branch with options fo…
…r build (-p).
- Loading branch information
1 parent
bb3996a
commit 3a83496
Showing
4 changed files
with
97 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# -*- mode: python -*- | ||
# | ||
# pyinstaller -y --clean k40_whisperer.spec | ||
# python -OO -m PyInstaller -y --clean k40_whisperer.spec | ||
# | ||
|
||
block_cipher = None | ||
|
||
a = Analysis(['k40_whisperer.py'], | ||
pathex=['/Users/houser/Projects/K40_Whisperer'], | ||
binaries=[], | ||
datas=[], | ||
hiddenimports=[], | ||
hookspath=[], | ||
runtime_hooks=[], | ||
excludes=[], | ||
win_no_prefer_redirects=False, | ||
win_private_assemblies=False, | ||
cipher=block_cipher, | ||
noarchive=False) | ||
pyz = PYZ(a.pure, a.zipped_data, | ||
cipher=block_cipher) | ||
exe = EXE(pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.zipfiles, | ||
a.datas, | ||
[], | ||
name='k40_whisperer', | ||
debug=False, | ||
bootloader_ignore_signals=False, | ||
strip=False, | ||
upx=True, | ||
runtime_tmpdir=None, | ||
console=False | ||
) | ||
app = BUNDLE(exe, | ||
name='K40 Whisperer.app', | ||
icon='emblem.icns', | ||
bundle_identifier=None, | ||
info_plist={ | ||
'NSPrincipleClass': 'NSApplication', | ||
'NSAppleScriptEnabled': False, | ||
'CFBundleIdentifier': 'com.scorchworks.k40_whisperer', | ||
'CFBundleName': 'K40 Whisperer', | ||
'CFBundleDisplayName': 'K40 Whisperer', | ||
'CFBundleShortVersionString': '0.32' | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
lxml | ||
pyusb | ||
pillow | ||
pyinstaller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters