Skip to content

Commit fd2b495

Browse files
authored
small chage
add spec file for convert to .exe and add cube in the icon file
1 parent 9fe433c commit fd2b495

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

cube.ico

112 KB
Binary file not shown.

mainPage.spec

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)