Skip to content

Commit

Permalink
added new version build via pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelSchm committed Oct 23, 2023
1 parent 5039df8 commit 8504d8b
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
build/MS-Teams-Busy-Light/Analysis-00.toc
build/MS-Teams-Busy-Light/base_library.zip
build/MS-Teams-Busy-Light/EXE-00.toc
build/MS-Teams-Busy-Light/MS-Teams-Busy-Light.pkg
build/MS-Teams-Busy-Light/PKG-00.toc
build/MS-Teams-Busy-Light/PYZ-00.pyz
build/MS-Teams-Busy-Light/PYZ-00.toc
build/MS-Teams-Busy-Light/Tree-00.toc
build/MS-Teams-Busy-Light/Tree-01.toc
build/MS-Teams-Busy-Light/Tree-02.toc
build/MS-Teams-Busy-Light/warn-MS-Teams-Busy-Light.txt
build/MS-Teams-Busy-Light/xref-MS-Teams-Busy-Light.html
build/MS-Teams-Busy-Light/localpycs/pyimod01_archive.pyc
build/MS-Teams-Busy-Light/localpycs/pyimod02_importers.pyc
build/MS-Teams-Busy-Light/localpycs/pyimod03_ctypes.pyc
build/MS-Teams-Busy-Light/localpycs/pyimod04_pywin32.pyc
build/MS-Teams-Busy-Light/localpycs/struct.pyc
__pycache__/datetime.cpython-312.pyc
38 changes: 38 additions & 0 deletions MS-Teams-Busy-Light.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['C:/Repository/MS-Teams-Busy-Light/MS-Teams-Busy-Light.py'],
pathex=['C:/Repository/MS-Teams-Busy-Light/.venv/Scripts'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='MS-Teams-Busy-Light',
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=['C:\\Repository\\MS-Teams-Busy-Light\\images\\traffic_light.ico'],
)
Binary file not shown.
Binary file removed output/Read File.exe
Binary file not shown.

0 comments on commit 8504d8b

Please sign in to comment.