mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-30 11:19:23 +00:00
21 lines
516 B
RPMSpec
21 lines
516 B
RPMSpec
|
# -*- 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 )
|