mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +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",
|
||||
# Harmony implementation
|
||||
"filecmp",
|
||||
"dns"
|
||||
"dns",
|
||||
# Python defaults (cx_Freeze skip them by default)
|
||||
"dbm"
|
||||
]
|
||||
|
||||
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"
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue