From 04e8cb08985c6fbb707d4fa99c4a5f7eb564a1b0 Mon Sep 17 00:00:00 2001 From: Linus Gasser Date: Tue, 5 Sep 2023 15:01:07 +0200 Subject: [PATCH] Update data.py Explain the different types of software --- data.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data.py b/data.py index 9a77625..a692791 100644 --- a/data.py +++ b/data.py @@ -76,12 +76,12 @@ sy.Optional("layman_desc"): sy.Str(), sy.Optional("tech_desc"): sy.Str(), sy.Optional("type"): sy.CommaSeparated(sy.Enum([ - "Application", - "Library", - "Framework", - "Toolset", - "Simulation", - "Experiments", + "Application", # Stand-alone code with useful functionality outside of the paper + "Library", # Code to be included in other projects outside of the paper + "Framework", # A set of concepts and best practices for a given task + "Toolset", # Various stand-alone applications for a given task + "Simulation", # Generic code that can be used to run simpulations described in the paper + "Experiments", # Code that produces figures and graphs of the paper ])), sy.Optional("notes"): sy.Str(), sy.Optional("url"): sy.Url(),