Skip to content

Commit

Permalink
Update __init__.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Oct 24, 2021
1 parent 144a865 commit 999327b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions elevenclock/__init__.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


Expand All @@ -9,6 +10,7 @@ a = Analysis(['__init__.py'],
datas=[('icon.ico', '.'), ('*.png', '.'), ('lang', 'lang')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
Expand All @@ -17,11 +19,12 @@ a = Analysis(['__init__.py'],
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)

exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
a.datas,
[],
name='__init__',
debug=False,
Expand All @@ -30,4 +33,8 @@ exe = EXE(pyz,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True , icon='icon.ico')
console=False,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None , icon='icon.ico')

0 comments on commit 999327b

Please sign in to comment.