@@ -72,6 +72,8 @@ class DependencyWalker(object):
72
72
- The DLL_SEARCH_PATHS environment variable
73
73
"""
74
74
75
+ EXCLUDE = ["MSVCRT140.dll" ]
76
+
75
77
def __init__ (self , dll_file : str , dependencies_exe = "deps\\ dependencies.exe" , specials = dict ()):
76
78
if not os .path .exists (dependencies_exe ):
77
79
printf ("dependencies.exe is required to find all dependency DLLs" )
@@ -146,7 +148,9 @@ def _find_dll_abs_path(self, dll_name: str) -> Optional[str]:
146
148
147
149
def copy_to_target (self , target : str ):
148
150
for p in self .dependency_dll_files :
149
- if os .path .basename (p ) in self ._specials :
151
+ if os .path .basename (p ) in self .EXCLUDE :
152
+ continue
153
+ elif os .path .basename (p ) in self ._specials :
150
154
t = os .path .join (target , * self ._specials [os .path .basename (p )].split ("/" ), os .path .basename (p ))
151
155
d = os .path .dirname (t )
152
156
if not os .path .exists (d ):
@@ -192,6 +196,7 @@ def copy_to_target(self, target: str):
192
196
url = "https://github.com/RedFantom/python-gttk" ,
193
197
download_url = "https://github.com/RedFantom/python-gttk/releases" ,
194
198
license = "GNU GPLv3" ,
199
+ long_description_content_type = "text/markdown" ,
195
200
long_description = read ("README.md" ),
196
201
zip_safe = False ,
197
202
** kwargs
0 commit comments