Total Complexity | 0 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # Licensed under a 3-clause BSD style license - see LICENSE |
||
2 | """MUTIS: A Python package for muti-wavelength time series analysis.""" |
||
3 | |||
4 | __all__ = ["__version__"] |
||
5 | |||
6 | import pkg_resources |
||
7 | |||
8 | try: |
||
9 | __version__ = pkg_resources.get_distribution(__name__).version |
||
10 | except pkg_resources.DistributionNotFound: |
||
11 | # package is not installed |
||
12 | pass |
||
13 | |||
14 | from mutis.correlation import Correlation |
||
|
|||
15 | from mutis.signal import Signal |
||
16 |