captest 0.13.3rc1__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.
captest/__init__.py ADDED
@@ -0,0 +1,21 @@
1
+ from captest import (
2
+ capdata as capdata,
3
+ util as util,
4
+ prtest as prtest,
5
+ columngroups as columngroups,
6
+ io as io,
7
+ plotting as plotting,
8
+ )
9
+
10
+ from captest.io import (
11
+ load_data as load_data,
12
+ load_pvsyst as load_pvsyst,
13
+ DataLoader as DataLoader,
14
+ )
15
+
16
+ try:
17
+ from importlib.metadata import version
18
+
19
+ __version__ = version("captest")
20
+ except Exception:
21
+ __version__ = "unknown"
captest/_version.py ADDED
@@ -0,0 +1,34 @@
1
+ # file generated by setuptools-scm
2
+ # don't change, don't track in version control
3
+
4
+ __all__ = [
5
+ "__version__",
6
+ "__version_tuple__",
7
+ "version",
8
+ "version_tuple",
9
+ "__commit_id__",
10
+ "commit_id",
11
+ ]
12
+
13
+ TYPE_CHECKING = False
14
+ if TYPE_CHECKING:
15
+ from typing import Tuple
16
+ from typing import Union
17
+
18
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
19
+ COMMIT_ID = Union[str, None]
20
+ else:
21
+ VERSION_TUPLE = object
22
+ COMMIT_ID = object
23
+
24
+ version: str
25
+ __version__: str
26
+ __version_tuple__: VERSION_TUPLE
27
+ version_tuple: VERSION_TUPLE
28
+ commit_id: COMMIT_ID
29
+ __commit_id__: COMMIT_ID
30
+
31
+ __version__ = version = '0.13.3rc1'
32
+ __version_tuple__ = version_tuple = (0, 13, 3, 'rc1')
33
+
34
+ __commit_id__ = commit_id = None