mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Merge pull request #1652 from pypeclub/bugfix/missing_python_defaults
This commit is contained in:
commit
29be5ea862
1 changed files with 7 additions and 1 deletions
8
setup.py
8
setup.py
|
|
@ -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"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue