Merge pull request #1652 from pypeclub/bugfix/missing_python_defaults

This commit is contained in:
Milan Kolar 2021-06-04 19:05:30 +02:00 committed by GitHub
commit 29be5ea862
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,10 +46,16 @@ install_requires = [
"httplib2", "httplib2",
# Harmony implementation # Harmony implementation
"filecmp", "filecmp",
"dns" "dns",
# Python defaults (cx_Freeze skip them by default)
"dbm"
] ]
includes = [] 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 = [ excludes = [
"openpype" "openpype"
] ]