harmony uses package.py

This commit is contained in:
Jakub Trllo 2024-04-22 14:26:38 +02:00
parent 85fe7f0de7
commit 2b1e67c88f
3 changed files with 3 additions and 8 deletions

View file

@ -0,0 +1,3 @@
name = "harmony"
title = "Harmony"
version = "0.1.2"

View file

@ -1,14 +1,9 @@
from ayon_server.addons import BaseServerAddon
from .settings import HarmonySettings, DEFAULT_HARMONY_SETTING
from .version import __version__
class Harmony(BaseServerAddon):
name = "harmony"
title = "Harmony"
version = __version__
settings_model = HarmonySettings
async def get_default_settings(self):

View file

@ -1,3 +0,0 @@
# -*- coding: utf-8 -*-
"""Package declaring addon version."""
__version__ = "0.1.2"