landscape-tools 0.0.2__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,3 @@
1
+ # pyright: reportUnusedImport=false
2
+ from . import barren_plateaus, landscape_visualization
3
+ from ._version import __version__
@@ -0,0 +1,8 @@
1
+ from pathlib import Path
2
+
3
+ from setuptools_scm import get_version
4
+
5
+ try:
6
+ __version__ = get_version(relative_to=Path(__file__).parent.parent)
7
+ except:
8
+ __version__ = None