Skip to content

Commit dfc4bbf

Browse files
committed
Add installer spec.
1 parent ec275fa commit dfc4bbf

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

crypto/crypto.spec

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['crypto.py'],
7+
binaries=[],
8+
datas=[],
9+
hiddenimports=[],
10+
hookspath=[],
11+
runtime_hooks=[],
12+
excludes=[],
13+
win_no_prefer_redirects=False,
14+
win_private_assemblies=False,
15+
cipher=block_cipher,
16+
noarchive=False)
17+
pyz = PYZ(a.pure, a.zipped_data,
18+
cipher=block_cipher)
19+
exe = EXE(pyz,
20+
a.scripts,
21+
[],
22+
exclude_binaries=True,
23+
name='Goodforbitcoin',
24+
debug=False,
25+
bootloader_ignore_signals=False,
26+
strip=False,
27+
upx=True,
28+
console=False,
29+
icon='resources/icon.ico'
30+
)
31+
coll = COLLECT(exe,
32+
a.binaries,
33+
a.zipfiles,
34+
a.datas,
35+
strip=False,
36+
upx=True,
37+
upx_exclude=[],
38+
name='Goodforbitcoin'
39+
)
40+
app = BUNDLE(coll,
41+
name='Goodforbitcoin.app',
42+
icon='resources/icon.icns',
43+
bundle_identifier='com.learnpyqt.Goodforbitcoin',
44+
info_plist={
45+
'NSHighResolutionCapable': 'True'
46+
},
47+
)

0 commit comments

Comments
 (0)