inclusive filter No longer just HOLD or only numbermaster
parent
075a84133b
commit
8ffd24840e
@ -1,4 +1,7 @@ |
||||
__pycache__/ |
||||
venv/ |
||||
work/ |
||||
build/ |
||||
dist/ |
||||
|
||||
*.log |
||||
@ -0,0 +1,50 @@ |
||||
# -*- mode: python ; coding: utf-8 -*- |
||||
|
||||
|
||||
block_cipher = None |
||||
|
||||
|
||||
a = Analysis( |
||||
['reconcile_holds.py'], |
||||
pathex=[], |
||||
binaries=[], |
||||
datas=[('config.toml', '.'), ('requirements.txt', '.')], |
||||
hiddenimports=['openpyxl'], |
||||
hookspath=[], |
||||
hooksconfig={}, |
||||
runtime_hooks=[], |
||||
excludes=[], |
||||
win_no_prefer_redirects=False, |
||||
win_private_assemblies=False, |
||||
cipher=block_cipher, |
||||
noarchive=False, |
||||
) |
||||
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) |
||||
|
||||
exe = EXE( |
||||
pyz, |
||||
a.scripts, |
||||
[], |
||||
exclude_binaries=True, |
||||
name='Hold Reconciler', |
||||
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.zipfiles, |
||||
a.datas, |
||||
strip=False, |
||||
upx=True, |
||||
upx_exclude=[], |
||||
name='Hold Reconciler', |
||||
) |
||||
Loading…
Reference in new issue