From abf1d1ee959ac256a7058181e7a79d8c6ae491df Mon Sep 17 00:00:00 2001 From: pinb-mini Date: Fri, 30 Aug 2024 22:42:36 +0900 Subject: [PATCH] add gitignore --- .gitignore | 6 ++++++ bunnysync.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 .gitignore create mode 100644 bunnysync.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aea8ea0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/venv +/dist +/build +/__pycache__ +my_data.db +.DS_Store \ No newline at end of file diff --git a/bunnysync.spec b/bunnysync.spec new file mode 100644 index 0000000..9710c4f --- /dev/null +++ b/bunnysync.spec @@ -0,0 +1,45 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['bunnysync.py'], + pathex=[], + binaries=[], + datas=[('images/realrabbit.ico', 'images'), ('images/realrabbit2.png', 'images')], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.datas, + [], + name='bunnysync', + 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=['images/realrabbit.ico'], +) +app = BUNDLE( + exe, + name='bunnysync.app', + icon='images/realrabbit.ico', + bundle_identifier=None, +)