mutis   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 9
dl 0
loc 16
rs 10
c 0
b 0
f 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
0 ignored issues
show
introduced by
Import "from mutis.correlation import Correlation" should be placed at the top of the module
Loading history...
15
from mutis.signal import Signal
0 ignored issues
show
introduced by
Import "from mutis.signal import Signal" should be placed at the top of the module
Loading history...
16