diff --git a/.gitignore b/.gitignore index 5368a92..f621e2a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ build com.apple.MobileGestalt.plist .DS_Store __pycache__ +*.spec diff --git a/main_app.spec b/main_app.spec deleted file mode 100644 index b0cce06..0000000 --- a/main_app.spec +++ /dev/null @@ -1,43 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -a = Analysis( - ['main_app.py'], - pathex=[], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - noarchive=False, -) -pyz = PYZ(a.pure) - -exe = EXE( - pyz, - a.scripts, - [], - exclude_binaries=True, - name='main_app', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - console=True, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -) -coll = COLLECT( - exe, - a.binaries, - a.datas, - strip=False, - upx=True, - upx_exclude=[], - name='main_app', -)