Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a53380 commit ada7d02Copy full SHA for ada7d02
setup.py
@@ -298,7 +298,7 @@ def _check_output(*popenargs, **kwargs):
298
os.chdir(setupdir)
299
300
sources = []
301
- for ext in (".sln", ".snk"):
+ for ext in (".sln", ".snk", ".config"):
302
sources.extend(glob("*" + ext))
303
304
for root, dirnames, filenames in os.walk("src"):
@@ -324,7 +324,9 @@ def _check_output(*popenargs, **kwargs):
324
Extension("clr", sources=sources)
325
],
326
data_files=[
327
- ("{install_platlib}", ["{build_lib}/Python.Runtime.dll"]),
+ ("{install_platlib}", [
328
+ "{build_lib}/Python.Runtime.dll",
329
+ "Python.Runtime.dll.config"]),
330
331
scripts=[_npython_exe],
332
zip_safe=False,
0 commit comments