These should all be frozen. If not, we need to fix our module finder.
@@ -237,7 +237,9 @@ class build_apps(distutils.core.Command):
ignore_copy_list = [
'__pycache__',
'*.pyc',
- ] + list(freezer_modules) + self.exclude_paths + list(self.gui_apps.values()) + list(self.console_apps.values())
+ '*.py',
+ ]
+ ignore_copy_list += self.exclude_paths
ignore_copy_list = [p3d.GlobPattern(i) for i in ignore_copy_list]
def copy_file(src, dst):