From c7c13b7142ad838f43fbefa929a5f5b2e97a69ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Samohel?= <33513211+antirotor@users.noreply.github.com> Date: Fri, 4 Jun 2021 18:06:25 +0200 Subject: [PATCH] Update setup.py add comment about cx_freeze excludes behavior --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 70f32537af..55098cb0b4 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,10 @@ install_requires = [ ] includes = [] +# WARNING: As of cx_freeze there is a bug? +# when this is empty, its hooks will not kick in +# and won't clean platform irrelevant modules +# like dbm mentioned above. excludes = [ "openpype" ]