Initial commit - SANEF Patch Manager v2
This commit is contained in:
commit
637798b2b9
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
build/
|
||||||
|
dist/
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
*.spec.bak
|
||||||
|
*.log
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
.env
|
||||||
|
*.db
|
||||||
|
*.sqlite
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
4232
patch_manager_v2.py
Normal file
4232
patch_manager_v2.py
Normal file
File diff suppressed because it is too large
Load Diff
39
patch_manager_v2.spec
Normal file
39
patch_manager_v2.spec
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['patch_manager_v2.py'],
|
||||||
|
pathex=['C:\\Users\\netadmin\\sanef_patch_manager_v2'],
|
||||||
|
binaries=[],
|
||||||
|
datas=[],
|
||||||
|
hiddenimports=[
|
||||||
|
'paramiko',
|
||||||
|
'openpyxl',
|
||||||
|
'pyVim',
|
||||||
|
'pyVim.connect',
|
||||||
|
'pyVmomi',
|
||||||
|
'sqlite3',
|
||||||
|
'ttkbootstrap',
|
||||||
|
],
|
||||||
|
hookspath=[],
|
||||||
|
hooksconfig={},
|
||||||
|
runtime_hooks=[],
|
||||||
|
excludes=['unittest', 'test'],
|
||||||
|
noarchive=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
pyz = PYZ(a.pure)
|
||||||
|
|
||||||
|
exe = EXE(
|
||||||
|
pyz,
|
||||||
|
a.scripts,
|
||||||
|
a.binaries,
|
||||||
|
a.datas,
|
||||||
|
[],
|
||||||
|
name='SANEF_Patch_Manager',
|
||||||
|
debug=False,
|
||||||
|
bootloader_ignore_signals=False,
|
||||||
|
strip=False,
|
||||||
|
upx=False,
|
||||||
|
console=False,
|
||||||
|
icon=None,
|
||||||
|
)
|
||||||
3562
patch_manager_v2_backup_before_theme.py
Normal file
3562
patch_manager_v2_backup_before_theme.py
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user