Coverage for strongcoca / __init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-07-25 16:26 +0000

1import logging 

2from .polarizable_unit import PolarizableUnit 

3from .coupled_system import CoupledSystem 

4from .compute_config import get_compute_config, set_compute_config 

5 

6logging.basicConfig(format='%(levelname)s %(asctime)s %(message)s') 

7 

8__all__ = ['CoupledSystem', 

9 'PolarizableUnit', 

10 'get_compute_config', 

11 'set_compute_config'] 

12 

13__version__ = '1.1'