Skip to content

Commit

Permalink
[py2exe] exclude additional DLLs (#3880)
Browse files Browse the repository at this point in the history
* [setup] ignore win-core DLL

* [setup] py2exe: exclude more DLLs

* [setup] py2exe: exclude more DLLs

* [setup] py2exe: cant ignore python27.dll
  • Loading branch information
truthbk committed Jun 1, 2020
1 parent 226d18c commit 4d2b6eb
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions setup.py
Expand Up @@ -68,12 +68,18 @@ def __init__(self, **kw):
'excludes': ['numpy'],
'dll_excludes': [
"IPHLPAPI.DLL",
"NSI.dll",
"NSI.DLL",
"WINNSI.DLL",
"WTSAPI32.dll",
"crypt32.dll",
"psapi.dll",
"powrprof.dll",
"WTSAPI32.DLL",
"CRYPT32.DLL",
"PSAPI.DLL",
"POWRPROF.DLL",
"PDH.DLL",
"KERNEL32.DLL",
"SHELL32.DLL",
"WS2_32.DLL",
"ADVAPI32.DLL",
"MSVCR90.DLL",
],
'ascii': False,
},
Expand Down

0 comments on commit 4d2b6eb

Please sign in to comment.