Advertisement
nahakubuilder

scanner.spec

Jan 15th, 2024
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.00 KB | None | 0 0
  1. # scanner.spec - pyinstaller config file:
  2. # -*- mode: python ; coding: utf-8 -*-
  3.  
  4.  
  5. a = Analysis(
  6.     ['scanner.py'],
  7.     pathex=[],
  8.     binaries=[],
  9.     datas=[('templates/index.html', 'templates')],
  10.     hiddenimports=['engineio.async_gevent'
  11.                    'flask',
  12.                    'flask_socketio',
  13.                    'scapy.all',
  14.                    'psutil',
  15.                    'threading',
  16.                    'time',
  17.                    'gevent',
  18.                    ],
  19.     hookspath=[],
  20.     hooksconfig={},
  21.     runtime_hooks=[],
  22.     excludes=[],
  23.     noarchive=False,
  24. )
  25. pyz = PYZ(a.pure)
  26.  
  27. exe = EXE(
  28.     pyz,
  29.     a.scripts,
  30.     a.binaries,
  31.     a.datas,
  32.     [],
  33.     name='scanner',
  34.     debug=True,
  35.     bootloader_ignore_signals=False,
  36.     strip=False,
  37.     upx=True,
  38.     upx_exclude=[],
  39.     runtime_tmpdir=None,
  40.     console=False,
  41.     disable_windowed_traceback=False,
  42.     argv_emulation=False,
  43.     target_arch=None,
  44.     codesign_identity=None,
  45.     entitlements_file=None,
  46. )
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement