Salome HOME
updated copyright message
[modules/shaper.git] / src / PythonAPI / model / __init__.py
index 26c520ca06da5de20a97529c5e57270b6b74bec3..50b1e6a677de9d8dd304236906ffdf1fbc6f8d43 100644 (file)
@@ -1,3 +1,21 @@
+# 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
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
 """This package defines the Parametric Geometry API of the Modeler.
 
 All features are available via model.add*() functions. Exceptions are:
@@ -8,20 +26,32 @@ All features are available via model.add*() functions. Exceptions are:
 
 # General purpose functions and abstract root classes
 
-from services  import *
-from roots     import *
-from tools import Selection
+from .services  import *
+from .roots     import *
 
 # Built-in features
 
-from sketcher.sketch  import addSketch
-from construction import *
-from exchange import *
-from features import *
-from parameter import *
-from partset import *
+from .build import *
+from .sketcher import *
+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 *
 
-# Custom exceptions
+# Add-on features
 
-from errors import WrongNumberOfArguments
-from errors import FeatureInputInvalid
+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