From 9f07dd89b7cd2de6ce341afd1aed3e6bd0122a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 14 Jan 2015 12:49:48 +0100 Subject: Python scripts added conf.py are files for configuration, all configuration is in global conf.py and others are just sourcing that kconfig_parser.py is executing kconfig_parser sat_solution.py is partly implemented, in state of this commit is not working properly. --- scripts/conf.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/conf.py (limited to 'scripts/conf.py') diff --git a/scripts/conf.py b/scripts/conf.py new file mode 100644 index 0000000..fc716b1 --- /dev/null +++ b/scripts/conf.py @@ -0,0 +1,8 @@ +#!/bin/python3 +# This file is only loading ../conf.py +import os +import importlib.machinery + +confpy = os.path.dirname(__file__) + "/../conf.py" + +conf = importlib.machinery.SourceFileLoader("module.name", confpy).load_module() -- cgit v1.2.3