-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.json
80 lines (80 loc) · 2.52 KB
/
addon.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"identifier": "com.seeq.addon.correlation",
"name": "Correlation Analysis",
"description": "Determine cross correlations and time shifts to maximize correlations among signals",
"version": "Input version here",
"maintainer": "Seeq Corporation https://seeq.com/",
"license": "Apache-2.0 license",
"icon": "fa fa-th",
"tags": {
"documentation": "Documentation website here https://seeq12.github.io/seeq-correlation/introduction.html"
},
"previews": ["additional_content/LargeMatrixExample.png"],
"elements": [
{
"name": "Correlation Analysis",
"description": "Determine cross correlations and time shifts to maximize correlations among signals",
"identifier": "com.seeq.addon.correlation.correlation",
"known_aliases": ["Correlation"],
"type": "AddOnTool",
"path": "data-lab-functions",
"notebook_file_path": "correlation_analysis_master.ipynb",
"extensions": ["ipyvuetify", "widgetsnbextension", "ipyvue"],
"configuration_schema": {
"type": "object",
"properties": {
"display": {
"type": "object",
"properties": {
"icon": {
"type": "string",
"default": "fa fa-th"
},
"linkType": {
"enum": ["window", "tab", "none"],
"default": "window"
},
"sortKey": {
"type": "string",
"default": "c"
},
"windowDetails": {
"type": "string",
"default": "toolbar=0,location=0,left=800,top=400,height=1000,width=1400"
},
"reuseWindow": {
"type": "boolean",
"default": true
},
"includeWorkbookParameters": {
"type": "boolean",
"default": true
}
},
"required": [
"icon",
"linkType",
"sortKey",
"windowDetails",
"reuseWindow",
"includeWorkbookParameters"
]
},
"advanced_project_configuration": {
"type": "object",
"properties": {
"kernel_name": {
"type": "string",
"default": "python38"
}
},
"required": [
"kernel_name"
]
}
},
"required": ["display", "advanced_project_configuration"]
}
}
]
}