Skip to content

Commit

Permalink
add pyinstaller build spec
Browse files Browse the repository at this point in the history
  • Loading branch information
InvisibleSymbol committed Jun 19, 2021
1 parent 6ac6c3a commit 040bbcc
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions osu!cleaner.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- mode: python ; coding: utf-8 -*-

block_cipher = None


a = Analysis(['main.py'],
pathex=['.'],
binaries=[],
datas=[(os.path.abspath("res"), "res")],
hiddenimports=[],
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,
[],
exclude_binaries=True,
name='osu!cleaner',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=False,
icon=os.path.abspath('res/icon.ico'),
console=False)
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=False,
upx_exclude=[],
name='osu!cleaner')

0 comments on commit 040bbcc

Please sign in to comment.