Diff of /src/multivelo/settings.py [000000] .. [5d6472]

Switch to side-by-side view

--- a
+++ b/src/multivelo/settings.py
@@ -0,0 +1,26 @@
+import os
+
+"""Settings
+"""
+
+# the desired verbosity
+global VERBOSITY
+
+# cwd: The current working directory
+global CWD
+
+# the name of the file to which we're writing the log files
+global LOG_FOLDER
+
+# the name of the file to which we're writing the logs
+# (If left to the default value of None, we don't write to a file)
+global LOG_FILENAME
+
+# the name of the gene the code is processing
+global GENE
+
+VERBOSITY = 1
+CWD = os.path.abspath(os.getcwd())
+LOG_FOLDER = os.path.join(CWD, "../logs")
+LOG_FILENAME = None
+GENE = None