mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Merge pull request #1182 from pypeclub/bugfix/pywin_import_error
Fix TVPaints usage of pywin
This commit is contained in:
commit
0885fde3dc
1 changed files with 6 additions and 1 deletions
7
setup.py
7
setup.py
|
|
@ -62,7 +62,12 @@ include_files = [
|
|||
]
|
||||
|
||||
if sys.platform == "win32":
|
||||
install_requires.append("win32ctypes")
|
||||
install_requires.extend([
|
||||
# `pywin32` packages
|
||||
"win32ctypes",
|
||||
"win32comext",
|
||||
"pythoncom"
|
||||
])
|
||||
|
||||
build_options = dict(
|
||||
packages=install_requires,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue