import os
import sys
import json

config = {}
fn = os.path.abspath(os.path.join(os.path.dirname(__file__), 'settings.json'))
with open(fn, "r") as read_file:
    config = json.load(read_file)
