From 459700b2125f0f858355419ab429fc462bb73a15 Mon Sep 17 00:00:00 2001 From: Sambhav Kothari Date: Fri, 20 Jan 2017 13:58:19 +0530 Subject: [PATCH] Add mimetypes in py2exe module includes --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f3a56ba61..120c739b6 100755 --- a/setup.py +++ b/setup.py @@ -709,7 +709,7 @@ try: }] args['options'] = { 'bdist_nsis': { - 'includes': ['json', 'sip'] + [e.name for e in ext_modules], + 'includes': ['json', 'sip', 'mimetypes'] + [e.name for e in ext_modules], 'excludes': exclude_modules + py2exe_exclude_modules, 'optimize': 2, },