peak-performance 0.6.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ import importlib.metadata
2
+
3
+ from . import models, pipeline, plots
4
+
5
+ __version__ = importlib.metadata.version(__package__ or __name__)
6
+ """Package version when the install command ran."""
7
+
8
+ __all__ = (
9
+ "__version__",
10
+ "models",
11
+ "pipeline",
12
+ "plots",
13
+ )