Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- mode: python ; coding: utf-8 -*-
- import os
- from kivy_deps import sdl2, glew # required for kivy
- spec_root = os.path.abspath(SPECPATH)
- block_cipher = None
- app_name = 'Ennyimba Za Kristo' # todo: Replace with your app name
- win_icon = 'sda2.ico' # todo: replace with icon
- a = Analysis(
- ['Ennyimba.py'],
- pathex=['C:/ennyimba asset/Ennyimba'],
- binaries=[],
- datas=[('C:/ennyimba asset/Ennyimbatext/*.txt', '.'),
- ('C:/ennyimba asset/fonts/*.ttf','.'),
- ('C:/ennyimba asset/sda2.png', '.'),
- ('C:/ennyimba asset/singing.jpg','.')],
- hiddenimports=['win32timezone'],
- hookspath=[],
- hooksconfig={},
- runtime_hooks=[],
- excludes=[],
- win_no_prefer_redirects=False,
- win_private_assemblies=False,
- cipher=block_cipher,
- noarchive=False,
- )
- pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
- exe = EXE(
- pyz,
- a.scripts,
- [],
- exclude_binaries=True,
- name=app_name,
- debug=False,
- bootloader_ignore_signals=False,
- strip=False,
- upx=True,
- console=False,
- disable_windowed_traceback=False,
- argv_emulation=False,
- target_arch=None,
- codesign_identity=None,
- entitlements_file=None,
- )
- coll = COLLECT(
- exe,
- a.binaries,
- a.zipfiles,
- a.datas,
- *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)],
- strip=False,
- upx=True,
- upx_exclude=[],
- name=app_name,
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement