Advertisement
jevixlugya

Untitled

Jan 12th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.33 KB | None | 0 0
  1. # -*- mode: python ; coding: utf-8 -*-
  2. from kivy_deps import sdl2, glew  # required for kivy
  3.  
  4. block_cipher = None
  5. app_name = 'Ennyimba Za Kristo'   # todo: Replace with your app name
  6. win_icon = 'C:/ennyimba/sda2.png'  # todo: replace with icon
  7.  
  8. a = Analysis(
  9.     ['Ennyimba.py'],
  10.     pathex=[],
  11.     binaries=[],
  12.     datas=[('C:/ennyimba/Ennyimbatext', '.'),
  13.         ('C:/ennyimba/fonts','.'),
  14.         ('C:/ennyimba/sda2.png', '.'),
  15.         ('C:/ennyimba/singing.jpg','.')],
  16.        
  17.     hiddenimports=['win32timezone'],
  18.     hookspath=[],
  19.     hooksconfig={},
  20.     runtime_hooks=[],
  21.     excludes=[],
  22.     win_no_prefer_redirects=False,
  23.     win_private_assemblies=False,
  24.     cipher=block_cipher,
  25.     noarchive=False,
  26. )
  27. pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
  28.  
  29. exe = EXE(
  30.     pyz,
  31.     a.scripts,
  32.     [],
  33.     exclude_binaries=True,
  34.     name='Ennyimba',
  35.     debug=False,
  36.     bootloader_ignore_signals=False,
  37.     strip=False,
  38.     upx=True,
  39.     console=False,
  40.     disable_windowed_traceback=False,
  41.     argv_emulation=False,
  42.     target_arch=None,
  43.     codesign_identity=None,
  44.     entitlements_file=None,
  45. )
  46. coll = COLLECT(
  47.     exe,
  48.     a.binaries,
  49.     a.zipfiles,
  50.     a.datas,
  51.     *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)],
  52.     strip=False,
  53.     upx=True,
  54.     upx_exclude=[],
  55.     name='Ennyimba',
  56. )
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement