Update setup.py

add comment about cx_freeze excludes behavior
This commit is contained in:
Ondřej Samohel 2021-06-04 18:06:25 +02:00 committed by GitHub
parent 3d291c04cb
commit c7c13b7142
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
]