Skip to content

Commit

Permalink
Update requirements, add gitignore, add main spec for pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
4Kaylum committed May 19, 2022
1 parent 70c4907 commit 6f32b4c
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
__pycache__/
__*
main.spec
# main.spec
build/
dist/
.venv/
44 changes: 44 additions & 0 deletions main.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(
['main.pyw'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=['win32gui'],
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,
a.binaries,
a.zipfiles,
a.datas,
[],
name='main',
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,
)
Binary file added requirements.txt
Binary file not shown.

0 comments on commit 6f32b4c

Please sign in to comment.