mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
12 lines
241 B
Python
12 lines
241 B
Python
# -*- coding: utf-8 -*-
|
|
"""OpenPype startup script."""
|
|
from openpype.pipeline import install_host
|
|
from openpype.hosts.houdini.api import HoudiniHost
|
|
|
|
|
|
def main():
|
|
print("Installing OpenPype ...")
|
|
install_host(HoudiniHost())
|
|
|
|
|
|
main()
|