pyASDReader 1.2.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.
@@ -0,0 +1,41 @@
1
+ """
2
+ pyASDReader - A Python library for reading and parsing ASD binary spectral files
3
+
4
+ This package provides tools for reading all versions of ASD spectral files
5
+ from various ASD spectroradiometer models.
6
+ """
7
+
8
+ from ._version import __version__
9
+ from .asd_file_reader import ASDFile
10
+ from .constant import (
11
+ FileVersion_e,
12
+ InstrumentType_e,
13
+ InstrumentModel_e,
14
+ SpectraType_e,
15
+ SignatureState_e,
16
+ AuditLogType_e,
17
+ DataType_e,
18
+ DataFormat_e,
19
+ IT_ms_e,
20
+ CalibrationType_e,
21
+ SaturationError_e,
22
+ ClassiferDataType_e,
23
+ )
24
+
25
+ __all__ = [
26
+ "__version__",
27
+ "ASDFile",
28
+ # Enums from constant module
29
+ "FileVersion_e",
30
+ "InstrumentType_e",
31
+ "InstrumentModel_e",
32
+ "SpectraType_e",
33
+ "SignatureState_e",
34
+ "AuditLogType_e",
35
+ "DataType_e",
36
+ "DataFormat_e",
37
+ "IT_ms_e",
38
+ "CalibrationType_e",
39
+ "SaturationError_e",
40
+ "ClassiferDataType_e",
41
+ ]
@@ -0,0 +1,12 @@
1
+ # Version file for pyASDReader
2
+ # This file provides access to the package version number
3
+ # Version is automatically managed by setuptools-scm from git tags
4
+
5
+ try:
6
+ from setuptools_scm import get_version
7
+ __version__ = get_version(root='..', relative_to=__file__)
8
+ except (ImportError, LookupError):
9
+ # Fallback version when setuptools_scm is not available
10
+ # or when not in a git repository
11
+ # Use actual release version as fallback
12
+ __version__ = "1.1.0"