Coverage for hiphive/__init__.py: 100%

Shortcuts on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

18 statements  

1""" 

2hiPhive module. 

3""" 

4 

5from .cluster_space import ClusterSpace 

6from .structure_container import StructureContainer 

7from .force_constant_potential import ForceConstantPotential 

8from .force_constants import ForceConstants 

9from .core.config import config 

10from .core.rotational_constraints import enforce_rotational_sum_rules 

11 

12__project__ = 'hiPhive' 

13__description__ = 'High-order force constants for the masses' 

14__authors__ = ['Fredrik Eriksson', 

15 'Erik Fransson', 

16 'Paul Erhart'] 

17__copyright__ = '2023' 

18__license__ = 'MIT License' 

19__credits__ = ['Fredrik Eriksson', 

20 'Erik Fransson', 

21 'Paul Erhart'] 

22__version__ = '1.2' 

23__all__ = ['ClusterSpace', 

24 'StructureContainer', 

25 'ForceConstantPotential', 

26 'ForceConstants', 

27 'config', 

28 'enforce_rotational_sum_rules'] 

29__maintainer__ = 'The hiPhive developers team' 

30__maintainer_email__ = 'hiphive@materialsmodeling.org' 

31__status__ = 'Stable' 

32__url__ = 'http://hiphive.materialsmodeling.org/'