-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from seeq12/bugfix/ao/build-failure-behavior-d…
…atalabplaywrightsystemtest-correlation-CRAB-45722 CRAB-45722: Add advance project configuration to addon.json
- Loading branch information
Showing
1 changed file
with
76 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,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 | ||
} | ||
"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" | ||
}, | ||
"required": [ | ||
"icon", | ||
"linkType", | ||
"sortKey", | ||
"windowDetails", | ||
"reuseWindow", | ||
"includeWorkbookParameters" | ||
] | ||
} | ||
"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" | ||
] | ||
}, | ||
"required": ["display"] | ||
} | ||
"advanced_project_configuration": { | ||
"type": "object", | ||
"properties": { | ||
"kernel_name": { | ||
"type": "string", | ||
"default": "python38" | ||
} | ||
}, | ||
"required": [ | ||
"kernel_name" | ||
] | ||
} | ||
}, | ||
"required": ["display", "advanced_project_configuration"] | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |