Coverage for icet/__init__.py: 100%

14 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2024-05-06 04:14 +0000

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

2""" 

3Main module of the icet package. 

4""" 

5 

6from .core.cluster_space import ClusterSpace 

7from .core.cluster_expansion import ClusterExpansion 

8from .core.structure_container import StructureContainer 

9 

10__project__ = 'icet' 

11__description__ = 'A Pythonic approach to cluster expansions' 

12__copyright__ = '2022' 

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

14__version__ = '2.2' 

15__maintainer__ = 'The icet developers team' 

16__email__ = 'icet@materialsmodeling.org' 

17__status__ = 'Stable' 

18__url__ = 'http://icet.materialsmodeling.org/' 

19 

20__all__ = [ 

21 'ClusterSpace', 

22 'ClusterExpansion', 

23 'StructureContainer', 

24]