From 8cac17dcc357e3b358ff6a3791dfb3cb0bcf4a45 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Sun, 5 Apr 2020 00:16:45 +0200 Subject: [PATCH] Add description to config.py --- engine/config.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/engine/config.py b/engine/config.py index 31149f1..6766d16 100644 --- a/engine/config.py +++ b/engine/config.py @@ -35,11 +35,17 @@ METADATA={ #Various strings for the README #Extra whitespace will be stripped so we don't need to worry about docstring indentation "description" : """ -Hello World - +Argodejo (Esperanto: 'place to set things up') is a music production session manager. +It is used to start your programs, remember their (JACK) interconnections and make your life easier +in general. +""" + "\n" + """ +You can seamlessly change between two view modes to quickly start a few programs or have complete +control and a detailed overview. """ + "\n" + """ -Foo Bar""", +Argodejo does not re-invent the wheel but instead uses the Non-Session-Manager backend and enhances +it with some tricks of its own, that always remain 100% compatible with the original sessions. +""", #this is the dict-comma. - "dependencies" : "\n".join("* "+dep for dep in ("A Brain", "Linux" )), + "dependencies" : "\n".join("* "+dep for dep in ("Non Session Manager (or compatible)")), }