Skip to content

Commit 85d5bfd

Browse files
committed
added exe
1 parent 2d24862 commit 85d5bfd

18 files changed

Lines changed: 74384 additions & 0 deletions
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
from PyInstaller.utils.hooks import collect_all
3+
4+
datas = []
5+
binaries = []
6+
hiddenimports = []
7+
tmp_ret = collect_all('customtkinter')
8+
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
9+
tmp_ret = collect_all('matplotlib')
10+
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
11+
12+
13+
a = Analysis(
14+
['gui_app.py'],
15+
pathex=[],
16+
binaries=binaries,
17+
datas=datas,
18+
hiddenimports=hiddenimports,
19+
hookspath=[],
20+
hooksconfig={},
21+
runtime_hooks=[],
22+
excludes=[],
23+
noarchive=False,
24+
optimize=0,
25+
)
26+
pyz = PYZ(a.pure)
27+
28+
exe = EXE(
29+
pyz,
30+
a.scripts,
31+
a.binaries,
32+
a.datas,
33+
[],
34+
name='StudentManagementPro',
35+
debug=False,
36+
bootloader_ignore_signals=False,
37+
strip=False,
38+
upx=True,
39+
upx_exclude=[],
40+
runtime_tmpdir=None,
41+
console=False,
42+
disable_windowed_traceback=False,
43+
argv_emulation=False,
44+
target_arch=None,
45+
codesign_identity=None,
46+
entitlements_file=None,
47+
)

Student-GUI-with-SQL/GUI-App-v2/build/StudentManagementPro/Analysis-00.toc

Lines changed: 10016 additions & 0 deletions
Large diffs are not rendered by default.

Student-GUI-with-SQL/GUI-App-v2/build/StudentManagementPro/EXE-00.toc

Lines changed: 6982 additions & 0 deletions
Large diffs are not rendered by default.

Student-GUI-with-SQL/GUI-App-v2/build/StudentManagementPro/PKG-00.toc

Lines changed: 6960 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.

Student-GUI-with-SQL/GUI-App-v2/build/StudentManagementPro/PYZ-00.toc

Lines changed: 2801 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)