[0ad989]: / src / multivelo / settings.py

Download this file

27 lines (19 with data), 523 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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