Skip to content

Commit bba9092

Browse files
committed
Revise win32 pyinstaller spec
1 parent f4954b7 commit bba9092

File tree

1 file changed

+41
-34
lines changed

1 file changed

+41
-34
lines changed

SLIP-39-win32.spec

Lines changed: 41 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,48 @@ datas = []
55
datas += collect_data_files('shamir_mnemonic')
66
datas += collect_data_files('slip39')
77

8-
98
block_cipher = None
109

10+
a = Analysis(
11+
['SLIP-39.py'],
12+
pathex=[],
13+
binaries=[],
14+
datas=datas,
15+
hiddenimports=['slip39'],
16+
hookspath=[],
17+
hooksconfig={},
18+
runtime_hooks=[],
19+
excludes=[],
20+
win_no_prefer_redirects=False,
21+
win_private_assemblies=False,
22+
cipher=block_cipher,
23+
noarchive=False,
24+
)
1125

12-
a = Analysis(['SLIP-39.py'],
13-
pathex=[],
14-
binaries=[],
15-
datas=datas,
16-
hiddenimports=['slip39'],
17-
hookspath=[],
18-
hooksconfig={},
19-
runtime_hooks=[],
20-
excludes=[],
21-
win_no_prefer_redirects=False,
22-
win_private_assemblies=False,
23-
cipher=block_cipher,
24-
noarchive=False)
25-
pyz = PYZ(a.pure, a.zipped_data,
26-
cipher=block_cipher)
26+
pyz = PYZ(
27+
a.pure,
28+
a.zipped_data,
29+
cipher=block_cipher,
30+
)
2731

28-
exe = EXE(pyz,
29-
a.scripts,
30-
a.binaries,
31-
a.zipfiles,
32-
a.datas,
33-
[],
34-
name='SLIP-39',
35-
debug=False,
36-
bootloader_ignore_signals=False,
37-
strip=False,
38-
upx=True,
39-
upx_exclude=[],
40-
runtime_tmpdir=None,
41-
console=False,
42-
disable_windowed_traceback=False,
43-
target_arch=None,
44-
codesign_identity=None,
45-
entitlements_file=None )
32+
exe = EXE(
33+
pyz,
34+
a.scripts,
35+
a.binaries,
36+
a.zipfiles,
37+
a.datas,
38+
[],
39+
name='SLIP-39',
40+
debug=False,
41+
bootloader_ignore_signals=False,
42+
strip=False,
43+
upx=True,
44+
upx_exclude=[],
45+
runtime_tmpdir=None,
46+
console=False,
47+
disable_windowed_traceback=False,
48+
argv_emulation=False,
49+
target_arch=None,
50+
codesign_identity=None,
51+
entitlements_file=None,
52+
)

0 commit comments

Comments
 (0)