Advertisement
ajith_97

spec

May 23rd, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. # -*- mode: python ; coding: utf-8 -*-
  2.  
  3.  
  4. a = Analysis(
  5. ['src/main.py'],
  6. pathex=['.', './src'],
  7. binaries=[],
  8. datas=[('src/data/raw/Draft_VISNIR_template_Daylight.xml', 'data/raw')],
  9. hiddenimports=['src.cli', 'src.constants', 'src.dir_traversal', 'src.nvipm_xml.xmlmodifier', 'src.nvipm_xml.xmlparser',
  10. 'loguru', 'alive_progress'],
  11. hookspath=['./hooks'],
  12. hooksconfig={},
  13. runtime_hooks=[],
  14. excludes=[],
  15. noarchive=False,
  16. optimize=0,
  17. )
  18. pyz = PYZ(a.pure)
  19.  
  20. exe = EXE(
  21. pyz,
  22. a.scripts,
  23. a.binaries,
  24. a.datas,
  25. [],
  26. name='nmm',
  27. debug=False,
  28. bootloader_ignore_signals=False,
  29. strip=False,
  30. upx=True,
  31. upx_exclude=[],
  32. runtime_tmpdir=None,
  33. console=True,
  34. disable_windowed_traceback=False,
  35. argv_emulation=False,
  36. target_arch=None,
  37. codesign_identity=None,
  38. entitlements_file=None,
  39. )
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement