2021-04-02 21:35:05 +00:00
|
|
|
# -*- mode: python ; coding: utf-8 -*-
|
|
|
|
|
|
|
|
block_cipher = None
|
|
|
|
|
|
|
|
a = Analysis(['superscript.py'],
|
|
|
|
pathex=['/workspaces/tra-data-analysis/src'],
|
|
|
|
binaries=[],
|
|
|
|
datas=[],
|
|
|
|
hiddenimports=[
|
|
|
|
"dnspython",
|
|
|
|
"sklearn.utils._weight_vector",
|
|
|
|
"requests",
|
2021-08-18 03:04:01 +00:00
|
|
|
"websockets.legacy",
|
|
|
|
"websockets.legacy.server",
|
2021-04-02 21:35:05 +00:00
|
|
|
],
|
|
|
|
hookspath=[],
|
|
|
|
runtime_hooks=[],
|
|
|
|
excludes=[],
|
|
|
|
win_no_prefer_redirects=False,
|
|
|
|
win_private_assemblies=False,
|
|
|
|
cipher=block_cipher,
|
|
|
|
noarchive=False)
|
|
|
|
pyz = PYZ(a.pure, a.zipped_data,
|
|
|
|
cipher=block_cipher)
|
|
|
|
exe = EXE(pyz,
|
|
|
|
a.scripts,
|
|
|
|
a.binaries,
|
|
|
|
a.zipfiles,
|
|
|
|
a.datas,
|
2021-04-12 15:13:54 -07:00
|
|
|
[('W ignore', None, 'OPTION')],
|
2021-04-02 21:35:05 +00:00
|
|
|
name='superscript',
|
|
|
|
debug=False,
|
|
|
|
bootloader_ignore_signals=False,
|
|
|
|
strip=False,
|
|
|
|
upx=True,
|
|
|
|
upx_exclude=[],
|
|
|
|
runtime_tmpdir=None,
|
|
|
|
console=True )
|