-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathuncertwin.spec
executable file
·44 lines (40 loc) · 1.38 KB
/
uncertwin.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
# -*- mode: python -*-
block_cipher = None
a = Analysis(['suncal\\gui\\__main__.py'],
pathex=[],
binaries=[],
datas=[('suncal/gui/SUNCALmanual.pdf', '.'),
('suncal/common/style/suncal_light.mplstyle', '.'),
('suncal/common/style/suncal_dark.mplstyle', '.')],
hiddenimports=['scipy._lib.array_api_compat.numpy.fft'],
hookspath=[],
hooksconfig={
'matplotlib': {'backends': ['Qt5Agg', 'SVG', 'AGG', 'PDF']},
},
excludes=[
'_tkinter', 'tk85.dll', 'tcl85.dll',
'_sqlite3', 'zmq', 'tornado', 'IPython'
],
runtime_hooks=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='Suncal',
debug=False,
strip=False,
icon='suncal/gui/icons/PSLcal_logo.ico',
upx=True,
console=False,
version='winexe_version_info.txt')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name='Suncal')