aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/lib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/lib/__init__.py')
-rw-r--r--bsie/lib/__init__.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/bsie/lib/__init__.py b/bsie/lib/__init__.py
index 578c2c4..f44fb74 100644
--- a/bsie/lib/__init__.py
+++ b/bsie/lib/__init__.py
@@ -1,18 +1,16 @@
-"""
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
-# imports
+# standard imports
import typing
# inner-module imports
from .bsie import BSIE
+from .builder import PipelineBuilder
+from .naming_policy import DefaultNamingPolicy
# exports
__all__: typing.Sequence[str] = (
'BSIE',
+ 'PipelineBuilder',
)
## EOF ##