diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..cfb829a --- /dev/null +++ b/__init__.py @@ -0,0 +1,14 @@ +import logging +import os + +__version__ = "1.0.0" + +log = logging.getLogger(__name__) +_LOG_LEVEL = os.environ.get("IG_LOG_LEVEL", "INFO").upper() +log.setLevel(level=_LOG_LEVEL) + +examples_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "examples") +configs_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "configs") + +log.debug("Example path: {}".format(examples_path)) +log.debug("Example config path: {}".format(configs_path)) diff --git a/behavior/__init__.py b/behavior/__init__.py index cfb829a..e69de29 100644 --- a/behavior/__init__.py +++ b/behavior/__init__.py @@ -1,14 +0,0 @@ -import logging -import os - -__version__ = "1.0.0" - -log = logging.getLogger(__name__) -_LOG_LEVEL = os.environ.get("IG_LOG_LEVEL", "INFO").upper() -log.setLevel(level=_LOG_LEVEL) - -examples_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "examples") -configs_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "configs") - -log.debug("Example path: {}".format(examples_path)) -log.debug("Example config path: {}".format(configs_path)) diff --git a/behavior/baselines/__init__.py b/behavior/baselines/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/behavior/benchmark/__init__.py b/behavior/benchmark/__init__.py new file mode 100644 index 0000000..e69de29