We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe433c commit fd2b495Copy full SHA for fd2b495
cube.ico
112 KB
mainPage.spec
@@ -0,0 +1,33 @@
1
+# -*- mode: python ; coding: utf-8 -*-
2
+
3
+block_cipher = None
4
5
6
+a = Analysis(['mainPage.py'],
7
+ pathex=['C:\\Users\\Jakub\\PycharmProjects\\CKPRNG'],
8
+ binaries=[],
9
+ datas=[],
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
+ noarchive=False)
18
+pyz = PYZ(a.pure, a.zipped_data,
19
+ cipher=block_cipher)
20
+exe = EXE(pyz,
21
+ a.scripts,
22
+ a.binaries,
23
+ a.zipfiles,
24
+ a.datas,
25
+ [],
26
+ name='mainPage',
27
+ debug=False,
28
+ bootloader_ignore_signals=False,
29
+ strip=False,
30
+ upx=True,
31
+ upx_exclude=[],
32
+ runtime_tmpdir=None,
33
+ console=True , icon='cube.ico')
0 commit comments