Skip to content

Commit

Permalink
update pyinstaller spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
Gust4Oliveira committed Apr 21, 2023
1 parent f31dd97 commit 531aee6
Showing 1 changed file with 39 additions and 28 deletions.
67 changes: 39 additions & 28 deletions pyinstaller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,42 @@
block_cipher = None


a = Analysis(['main.py'],
pathex=['C:\\Users\\gusta\\Desktop\\Projetos\\Last.fm\\Last.fm-Discord-Rich-Presence'],
binaries=[],
datas=[],
hiddenimports=['pystray._win32'],
hookspath=['hooks'],
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,
a.binaries,
a.zipfiles,
a.datas,
[],
name='Last.fm Discord Rich Presence',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False , icon='assets\\icon.ico')
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=['pystray._win32'],
hookspath=['hooks'],
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,
a.binaries,
a.zipfiles,
a.datas,
[],
name='Last.fm Discord Rich Presence',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['assets\\icon.ico'],
)

0 comments on commit 531aee6

Please sign in to comment.