Skip to content

Commit

Permalink
Merge branch 'develop' into feature/AY-5403_Provide-dialog-to-choose-…
Browse files Browse the repository at this point in the history
…from-multiple-template-files-per-task-in-Wrap
  • Loading branch information
kalisp authored Jul 31, 2024
2 parents 5a47384 + d47ba7e commit 9e9b2ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/ayon_wrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
from .version import __version__
from .addon import (
WrapAddon,
WRAP_HOST_DIR
)


__all__ = (
"__version__",

"WrapAddon",
"WRAP_HOST_DIR"
)
3 changes: 3 additions & 0 deletions client/ayon_wrap/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

from ayon_core.addon import AYONAddon, IHostAddon, IPluginPaths

from .version import __version__

WRAP_HOST_DIR = os.path.dirname(os.path.abspath(__file__))
CREATE_PATH = os.path.join(WRAP_HOST_DIR, "plugins", "create")
PUBLISH_PATH = os.path.join(WRAP_HOST_DIR, "plugins", "publish")


class WrapAddon(AYONAddon, IHostAddon, IPluginPaths):
name = "wrap"
version = __version__
host_name = "wrap"

def get_workfile_extensions(self):
Expand Down

0 comments on commit 9e9b2ee

Please sign in to comment.