Salome HOME
updated copyright message
[modules/shaper.git] / src / PythonAPI / model / __init__.py
index 08f3d86507b48d4fadbb204059b2e784e10a64c5..50b1e6a677de9d8dd304236906ffdf1fbc6f8d43 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2019  CEA/DEN, EDF R&D
+# Copyright (C) 2015-2023  CEA, EDF
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -37,9 +37,21 @@ from .connection import *
 from .construction import *
 from .exchange import *
 from .features import *
+from .filters import *
 from .collection import *
 from .parameter import *
 from .partset import *
 from .primitives import *
 from .gdml import *
 from .tests import *
+
+# Add-on features
+
+from .addons import *
+# move functions from .addons to top level (model) package
+import inspect
+for attribute_name in dir(addons):
+    attribute = getattr(addons, attribute_name)
+    if inspect.isfunction(attribute):
+        globals()[attribute_name] = attribute
+del inspect