-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddon.json
64 lines (64 loc) · 2.1 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
{
"identifier": "com.seeq.addons.plot_curve",
"name": "Plot Curve",
"description": "A tool for fitting curves to tabular data and pushing resulting formulas to Seeq",
"version": "0.1.6",
"license": "Apache-2.0 license",
"icon": "fa fa-line-chart",
"maintainer": "Seeq",
"previews": [],
"elements": [
{
"name": "Plot Curve",
"identifier": "com.seeq.addons.plot_curve.tool",
"known_aliases": ["PlotCurve", "Plot Curve"],
"description": "A tool for fitting curves to tabular data and pushing resulting formulas to Seeq",
"type": "AddOnTool",
"path": "add-on-tool",
"notebook_file_path": "PlotCurve.ipynb",
"configuration_schema": {
"type": "object",
"properties": {
"display": {
"type": "object",
"properties": {
"icon": { "type": "string", "default": "fa fa-line-chart" },
"linkType": {
"enum": ["window", "tab", "none"],
"default": "window"
},
"sortKey": { "type": "string", "default": "a" },
"windowDetails": {
"type": "string",
"default": "popup=1,toolbar=0,location=0,left=800,top=200,height=915,width=1200"
},
"reuseWindow": { "type": "boolean", "default": false },
"includeWorkbookParameters": {
"type": "boolean",
"default": true
}
},
"required": [
"icon",
"linkType",
"sortKey",
"windowDetails",
"reuseWindow",
"includeWorkbookParameters"
]
},
"advanced_project_configuration": {
"type": "object",
"properties": {
"kernel_name": { "type": "string", "default": "python311" }
},
"required": ["kernel_name"]
}
},
"required": ["display", "advanced_project_configuration"]
},
"configuration_filename": "config",
"configuration_converter": "toml"
}
]
}