47 script=VTL.GetSourceCode(8),
49 source=__pyc_src_path,
50 include=VTL.GetIncludeDirectory(os.path.dirname(__pyc_src_path), 8),
51 dependency=VTL.GetLinkDependency(8),
53 output=os.path.join(__pyc_src_path,
"Plugin",
"JupyterLab",
"src",
".dist"),
55 encryption=
True, mode=
"onefile", scratch=VTL.Scratch, verbosity=2,
59 Main function to execute the script.
62 Py2App =
PyInstaller(BuildID, script, scratch=scratch, verbose=verbosity)
64 Py2App.Encryption(encryption)
66 Py2App.SourcePath(source)
67 Py2App.AddIncludePath(include)
68 Py2App.AddDependencyPath(dependency)
70 Py2App.OutputPath(output)
72 Py2App.Preprocessing(kwargs.get(
"preprocessing",
""))
76 Py2App.create(**kwargs)
main(BuildID, script=VTL.GetSourceCode(8), source=__pyc_src_path, include=VTL.GetIncludeDirectory(os.path.dirname(__pyc_src_path), 8), dependency=VTL.GetLinkDependency(8), output=os.path.join(__pyc_src_path,"Plugin","JupyterLab","src",".dist"), encryption=True, mode="onefile", scratch=VTL.Scratch, verbosity=2, **kwargs)