Coverage for hiphive/__init__.py: 100%
18 statements
« prev ^ index » next coverage.py v7.6.8, created at 2024-11-28 11:20 +0000
« prev ^ index » next coverage.py v7.6.8, created at 2024-11-28 11:20 +0000
1"""
2hiPhive module.
3"""
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
12__project__ = 'hiPhive'
13__description__ = 'High-order force constants for the masses'
14__authors__ = ['Fredrik Eriksson',
15 'Erik Fransson',
16 'Paul Erhart']
17__copyright__ = '2024'
18__license__ = 'MIT License'
19__credits__ = ['Fredrik Eriksson',
20 'Erik Fransson',
21 'Paul Erhart']
22__version__ = '1.4'
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/'