Coverage for local_installation_linux/mumott/__init__.py: 100%

20 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2024-08-11 23:08 +0000

1# -*- coding: utf-8 -*- 

2""" 

3Main module of the mumott package. 

4""" 

5 

6import logging 

7import sys 

8from .core.numba_setup import numba_setup 

9from .core.geometry import Geometry 

10from .core.probed_coordinates import ProbedCoordinates 

11from .core.spherical_harmonic_mapper import SphericalHarmonicMapper 

12from .data_handling.data_container import DataContainer 

13from .core.simulator import Simulator 

14 

15__project__ = 'mumott' 

16__description__ = 'A library for the analysis of multi-modal tensor tomography data' 

17__copyright__ = '2024' 

18__license__ = 'Mozilla Public License 2.0 (MPL 2.0)' 

19__version__ = '2.1' 

20__maintainer__ = 'The mumott developers team' 

21__status__ = 'Beta' 

22__url__ = 'https://mumott.org/' 

23 

24__all__ = [ 

25 'Geometry', 

26 'ProbedCoordinates', 

27 'DataContainer', 

28 'Simulator', 

29 'SphericalHarmonicMapper', 

30] 

31 

32logging.basicConfig(format='%(levelname)s:%(message)s', 

33 level=logging.INFO, 

34 stream=sys.stdout) 

35numba_setup()