Skip to content

Commit aebcc93

Browse files
committed
Add PyInstaller Spec File
1 parent 18907ae commit aebcc93

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

uac_wrapper.spec

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# -*- mode: python -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['uac_wrapper.pyw'],
7+
pathex=['.'],
8+
binaries=[],
9+
datas=[("images", "images/"), ("icon.ico", ".")],
10+
hiddenimports=[],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher)
17+
pyz = PYZ(a.pure, a.zipped_data,
18+
cipher=block_cipher)
19+
exe = EXE(pyz,
20+
a.scripts,
21+
a.binaries,
22+
a.zipfiles,
23+
a.datas,
24+
name='pyWinContext',
25+
icon="icon.ico",
26+
debug=False,
27+
strip=False,
28+
upx=True,
29+
runtime_tmpdir=None,
30+
console=False )

0 commit comments

Comments
 (0)