--- a
+++ b/CLI/MusculoskeletalAnalysisCLITools/__init__.py
@@ -0,0 +1,25 @@
+from .crop import crop
+from .density import densityMap
+from .fill import fill
+from .largestCC import largestCC
+from .reader import readImg
+from .reader import readMask
+from .shape import bWshape
+from .shape import updateVertices
+from .thickness import findSpheres
+from .width import width
+from .writeReport import writeReport
+
+__all__ = [
+    "crop",
+    "densityMap",
+    "fill",
+    "largestCC",
+    "readImg",
+    "readMask",
+    "bWshape",
+    "updateVertices",
+    "findSpheres",
+    "width",
+    "writeReport",
+]