+
+ +

Source code for tp

+"""Everything.
+
+Modules
+-------
+
+    calculate
+        tools for calculating derived properties and interpolating
+    settings
+        default values and metadata
+"""
+
+
[docs]def docstring_replace(**kwargs): + def d(f): + f.__doc__ = f.__doc__.format(**kwargs) + return f + return d
+ +from . import settings # required for other imports, prevents circularity +from . import axes, calculate, data, plot, setup, cli +
+ +
+