mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
* added openpype server addon creation logic * Better readme Co-authored-by: Ondřej Samohel <33513211+antirotor@users.noreply.github.com> * added docstring to 'find_files_in_subdir' * added some type notations * add whitespace around assignment * move pyproject toml to client subfolder and fix its location in private dir * Fix whitespace --------- Co-authored-by: Ondřej Samohel <33513211+antirotor@users.noreply.github.com>
9 lines
192 B
Python
9 lines
192 B
Python
from ayon_server.addons import BaseServerAddon
|
|
|
|
from .version import __version__
|
|
|
|
|
|
class OpenPypeAddon(BaseServerAddon):
|
|
name = "openpype"
|
|
title = "OpenPype"
|
|
version = __version__
|