generated from ynput/ayon-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.py
25 lines (20 loc) · 872 Bytes
/
package.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Required: lower case addon name e.g. 'deadline', otherwise addon
# will be invalid
name = "action-testing"
# Optional: Addon title shown in UI, 'name' is used by default e.g. 'Deadline'
title = "Action-Testing"
# Required: Valid semantic version (https://semver.org/)
version = "0.2.0+dev"
# Name of client code directory imported in AYON launcher
# - do not specify if there is no client code
client_dir = None
# Version compatibility with AYON server
# ayon_server_version = ">=1.0.7"
# Version compatibility with AYON launcher
# ayon_launcher_version = ">=1.0.2"
# Mapping of addon name to version requirements
# - addon with specified version range must exist to be able to use this addon
ayon_required_addons = {}
# Mapping of addon name to version requirements
# - if addon is used in same bundle the version range must be valid
ayon_compatible_addons = {}