Project restart
This commit is contained in:
58
package/pyinstaller/testium.spec
Normal file
58
package/pyinstaller/testium.spec
Normal file
@@ -0,0 +1,58 @@
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
|
||||
a = Analysis(
|
||||
['../../src/testium/__main__.py'],
|
||||
pathex=['../../src/testium',
|
||||
'../../src/testium/main_win/resources'],
|
||||
binaries=[],
|
||||
datas=[ ('../../src/VERSION', '.')],
|
||||
hiddenimports=["git",
|
||||
"interpreter",
|
||||
"main_win",
|
||||
"libs",
|
||||
"libs.console",
|
||||
"libs.termconsole",
|
||||
"libs.console_ssh",
|
||||
"libs.raw_tcp_console",
|
||||
"libs.runtime_plot",
|
||||
"matplotlib.backends.backend_pdf",
|
||||
"telnetlib3",
|
||||
"serial",
|
||||
"yaml",
|
||||
"pexpect",
|
||||
"jinja2",
|
||||
"colorama",
|
||||
"matplotlib",
|
||||
"junit_xml",
|
||||
"lxml",
|
||||
"tables",
|
||||
"pandas",],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
noarchive=False,
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
[],
|
||||
name='testium',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=True,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
)
|
||||
Reference in New Issue
Block a user