Release v1.0.2

This commit is contained in:
2025-10-03 17:39:57 +02:00
parent fe2972e4c9
commit 63c8c77950
2 changed files with 47 additions and 1 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.venv
__pycache__
.pytest_cache
.pytest_cache
build

45
Tagger.spec Normal file
View File

@@ -0,0 +1,45 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['Tagger.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='Tagger',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
onefile=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='Tagger',
)