-
Notifications
You must be signed in to change notification settings - Fork 3
/
power-profiler.spec
47 lines (44 loc) · 1.5 KB
/
power-profiler.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['power_profiler\\power_profiler.py'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=['tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter', 'shiboken2', 'lib2to3', 'ssl', 'bz2', 'lzma', 'curses'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
excluded_binaries = ['libGLESv2.dll',
'Qt5Network.dll',
'Qt5Qml.dll',
'Qt5Quick.dll',
'Qt5WebSockets.dll',
'opengl32sw.dll',
'Qt5DBus.dll',
'Qt5OpenGL.dll',
'Qt5QmlModels.dll',
'Qt5Test.dll',
'Qt5Svg.dll',
'libcrypto-1_1.dll',
'd3dcompiler_47.dll',
'libEGL.dll']
a.binaries = TOC([x for x in a.binaries if x[0] not in excluded_binaries])
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='power-profiler',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False )