Coverage for local_installation/dynasor/__init__.py: 100%

15 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2024-12-21 12:02 +0000

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

2 

3""" 

4dynasor module. 

5""" 

6 

7from .correlation_functions import (compute_dynamic_structure_factors, 

8 compute_spectral_energy_density, 

9 compute_static_structure_factors) 

10from .qpoints import (get_spherical_qpoints, 

11 get_supercell_qpoints_along_path) 

12from .sample import read_sample_from_npz 

13from .trajectory import Trajectory 

14 

15__project__ = 'dynasor' 

16__description__ = 'Dynamical structure factors and correlation' 

17' functions from molecular dynamics trajectories' 

18__copyright__ = '2024' 

19__license__ = 'MIT' 

20__credits__ = ['The dynasor developers team'] 

21__version__ = '2.1' 

22__maintainer__ = 'The dynasor developers team' 

23__status__ = 'Development Status :: 5 - Production/Stable' 

24__url__ = 'http://dynasor.materialsmodeling.org/' 

25__all__ = [ 

26 'compute_dynamic_structure_factors', 

27 'compute_spectral_energy_density', 

28 'compute_static_structure_factors', 

29 'get_spherical_qpoints', 

30 'get_supercell_qpoints_along_path', 

31 'read_sample_from_npz', 

32 'Trajectory', 

33]