From bba083de8f796b3954b64657ddfac36de59dfb1f Mon Sep 17 00:00:00 2001 From: "TCS portal test user (insilicolab@gmail.com)" Date: Tue, 7 Apr 2026 11:33:11 +0200 Subject: [PATCH] Add appDefinition.json --- appDefinition.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 appDefinition.json diff --git a/appDefinition.json b/appDefinition.json new file mode 100644 index 0000000..2b2d0b4 --- /dev/null +++ b/appDefinition.json @@ -0,0 +1,25 @@ +{ + "scriptLanguage" : "PYTHON", + "executableScriptName" : "sample_app.py", + "inputFiles" : [ { + "dataType" : "text_data", + "multiplicity" : { + "minCount" : 1, + "maxCount" : 2147483647 + } + } ], + "inputParameters" : [ { + "type" : "INTEGER", + "name" : "multiplier", + "optional" : false + } ], + "outputs" : [ { + "dataType" : "image_data", + "fileFormat" : "PNG", + "fileName" : "multiplied_numbers_plot.png", + "isReturnedValue" : false + } ], + "containsEnvironmentDescription" : false, + "requiredTools" : [ "python3", "python-matplotlib", "python-numpy" ], + "requiredComputationResources" : { } +} \ No newline at end of file