MCPcopy
hub / github.com/mitmproxy/mitmproxy / _pyinstaller

Function _pyinstaller

release/build.py:120–133  ·  view source on GitHub ↗
(specfile: str)

Source from the content-addressed store, hash-verified

118
119
120def _pyinstaller(specfile: str) -> None:
121 print(f"Invoking PyInstaller with {specfile}...")
122 subprocess.check_call(
123 [
124 "pyinstaller",
125 "--clean",
126 "--workpath",
127 TEMP_DIR / "pyinstaller/temp",
128 "--distpath",
129 TEMP_DIR / "pyinstaller/out",
130 specfile,
131 ],
132 cwd=here / "specs",
133 )
134
135
136@cli.command()

Callers 3

standalone_binariesFunction · 0.85
macos_appFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…