Skip to content

Commit d8c78aa

Browse files
committed
Add pyinstaller windows spec file.
1 parent d506850 commit d8c78aa

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

image_downloader_gui.spec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# -*- mode: python -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['image_downloader_gui.py'],
7+
pathex=['F:\\Documents\\code\\python\\Google-Image-Downloader'],
8+
binaries=None,
9+
datas=[("bin/phantomjs.exe", "bin/")],
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='image_downloader_gui',
25+
debug=False,
26+
strip=False,
27+
upx=True,
28+
console=True )

0 commit comments

Comments
 (0)