sunwhere 1.4.0__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.
sunwhere/__init__.py ADDED
@@ -0,0 +1,16 @@
1
+
2
+ import importlib.metadata
3
+
4
+ from .usecases import sites, regular_grid, transect
5
+
6
+ from ._core import __ALGORITHMS__
7
+ from .utils.datetime import universal_time_coordinated
8
+
9
+ try:
10
+ __version__ = importlib.metadata.version("sunwhere")
11
+ except importlib.metadata.PackageNotFoundError:
12
+ __version__ = "0.0.0"
13
+
14
+ SPA_ALGORITHMS = tuple(__ALGORITHMS__.keys())
15
+
16
+ __all__ = ["sites", "regular_grid", "transect", "universal_time_coordinated", "__version__", "SPA_ALGORITHMS"]