mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add additional modules for freezing on windows
This commit is contained in:
parent
488f9faef7
commit
0012024c63
1 changed files with 4 additions and 2 deletions
6
setup.py
6
setup.py
|
@ -146,11 +146,13 @@ freezer_includes = [
|
|||
'ast',
|
||||
]
|
||||
|
||||
if sys.platform == 'win32':
|
||||
if sys.platform.startswith('win'):
|
||||
freezer_includes.extend([
|
||||
'win32api',
|
||||
'win32con',
|
||||
'win32security',
|
||||
'ntsecuritycon'
|
||||
'ntsecuritycon',
|
||||
'_winreg'
|
||||
])
|
||||
elif sys.platform.startswith('linux'):
|
||||
freezer_includes.extend([
|
||||
|
|
Loading…
Add table
Reference in a new issue