generated from ynput/ayon-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.py
27 lines (22 loc) · 881 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
26
27
# Required: lower case addon name e.g. 'deadline', otherwise addon
# will be invalid
name = "mocha"
# Optional: Addon title shown in UI, 'name' is used by default e.g. 'Deadline'
title = "Mocha"
# Required: Valid semantic version (https://semver.org/)
version = "0.0.0"
# Name of client code directory imported in AYON launcher
# - do not specify if there is no client code
client_dir = "ayon_mocha"
# Version compatibility with AYON server
ayon_server_version = ">=1.1.2"
# 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 = {
"core": ">=1.0.12",
}
# Mapping of addon name to version requirements
# - if addon is used in same bundle the version range must be valid
ayon_compatible_addons = {}