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 |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
15 | from mutis.signal import Signal |
||
0 ignored issues
–
show
|
|||
16 |