tikzplot42 0.2.8__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.
tikzplot/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from . import plots
2
+ from .config import TikzConfig
3
+ from .colorbar import Colorbar
4
+
5
+ __all__ = ["plots", "TikzConfig", "Colorbar"]
tikzplot/__init__.pyi ADDED
@@ -0,0 +1,5 @@
1
+ from . import plots as plots
2
+ from .colorbar import Colorbar as Colorbar
3
+ from .config import TikzConfig as TikzConfig
4
+
5
+ __all__ = ['plots', 'TikzConfig', 'Colorbar']