diff options
author | m0sia <m0sia@m0sia.ru> | 2018-03-21 16:49:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 16:49:23 -0500 |
commit | 371aa112cacdb09dcb4ba4f81f804cf3d7aa557c (patch) | |
tree | b0658febe10f9f028962489a20fd620e88dcb63a | |
parent | 4d0ac3220e4237d2d4d2a80f4a701dc2e51bf2e0 (diff) | |
download | pyParrotZikTCP-371aa112cacdb09dcb4ba4f81f804cf3d7aa557c.tar.xz pyParrotZikTCP-371aa112cacdb09dcb4ba4f81f804cf3d7aa557c.zip |
bundle all DLLs together
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,7 +30,8 @@ setup( #'packages':'encodings',
# Optionally omit gio, gtk.keysyms, and/or rsvg if you're not using them
'includes': 'cairo, pango, pangocairo, atk, gobject, gio, gtk.keysyms, _winreg',
- 'dll_excludes': ['MSVCP90.dll', 'wbtapi.dll', 'irprops.cpl', 'crypt32.dll', 'MSIMG32.DLL', 'NSI.DLL', 'USP10.DLL', 'DNSAPI.DLL']
+ 'dll_excludes': ['MSVCP90.dll', 'wbtapi.dll', 'irprops.cpl', 'crypt32.dll', 'MSIMG32.DLL', 'NSI.DLL', 'USP10.DLL', 'DNSAPI.DLL'],
+ 'bundle_files': 0
}
},
|