Add appDefinition.json

This commit is contained in:
parent 07a69889a0
commit 5290974885

25
appDefinition.json Normal file
View File

@ -0,0 +1,25 @@
{
"scriptLanguage" : "PYTHON",
"executableScriptName" : "sample_app.py",
"inputFiles" : [ {
"dataType" : "text_data",
"multiplicity" : {
"minCount" : 1,
"maxCount" : 1
}
} ],
"inputParameters" : [ {
"type" : "INTEGER",
"name" : "multiplier",
"optional" : false
} ],
"outputs" : [ {
"dataType" : "image_data",
"fileFormat" : "PNG",
"fileName" : "multiplied_numbers_plot.png",
"isReturnedValue" : false
} ],
"containsEnvironmentDescription" : true,
"requiredTools" : [ "micromamba" ],
"requiredComputationResources" : { }
}