3dsmax uses package.py

This commit is contained in:
Jakub Trllo 2024-04-22 14:26:10 +02:00
parent d5100a1cc5
commit 73782cf148
3 changed files with 3 additions and 5 deletions

View file

@ -0,0 +1,3 @@
name = "max"
title = "Max"
version = "0.1.7"

View file

@ -2,14 +2,10 @@ from typing import Type
from ayon_server.addons import BaseServerAddon
from .version import __version__
from .settings import MaxSettings, DEFAULT_VALUES
class MaxAddon(BaseServerAddon):
name = "max"
title = "Max"
version = __version__
settings_model: Type[MaxSettings] = MaxSettings
async def get_default_settings(self):

View file

@ -1 +0,0 @@
__version__ = "0.1.7"