From ca22526ec0cf0bf35181a19e3835464a2e0b6d7d Mon Sep 17 00:00:00 2001 From: leminlimez <59540996+leminlimez@users.noreply.github.com> Date: Mon, 28 Oct 2024 18:25:22 -0400 Subject: [PATCH] ignore spec files --- .gitignore | 1 + main_app.spec | 43 ------------------------------------------- 2 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 main_app.spec 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', -)