mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 10:26:23 +00:00
21 lines
516 B
Python
21 lines
516 B
Python
# -*- mode: python -*-
|
|
|
|
# Copy into the pyinstaller directory
|
|
# ./pyinstaller.py --clean -F ./pyinstaller-mitmdump.spec
|
|
|
|
a = Analysis(['/Users/aldo/git/public/mitmproxy/mitmdump'],
|
|
hiddenimports=["pyamf"],
|
|
hookspath=None,
|
|
runtime_hooks=None)
|
|
pyz = PYZ(a.pure)
|
|
exe = EXE(pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
name='mitmdump',
|
|
debug=False,
|
|
strip=None,
|
|
upx=True,
|
|
console=True )
|