We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d506850 commit d8c78aaCopy full SHA for d8c78aa
image_downloader_gui.spec
@@ -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
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