Coverage for icet/__init__.py: 100%
14 statements
« prev ^ index » next coverage.py v7.5.0, created at 2024-12-26 04:12 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2024-12-26 04:12 +0000
1# -*- coding: utf-8 -*-
2"""
3Main module of the icet package.
4"""
6from .core.cluster_space import ClusterSpace
7from .core.cluster_expansion import ClusterExpansion
8from .core.structure_container import StructureContainer
10__project__ = 'icet'
11__description__ = 'A Pythonic approach to cluster expansions'
12__copyright__ = '2024'
13__license__ = 'Mozilla Public License 2.0 (MPL 2.0)'
14__version__ = '3.0'
15__maintainer__ = 'The icet developers team'
16__email__ = 'icet@materialsmodeling.org'
17__status__ = 'Stable'
18__url__ = 'http://icet.materialsmodeling.org/'
20__all__ = [
21 'ClusterSpace',
22 'ClusterExpansion',
23 'StructureContainer',
24]