Coverage for wulffpack/__init__.py: 100%

14 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-02 08:51 +0000

1from .single_crystal import SingleCrystal 

2from .decahedron import Decahedron 

3from .icosahedron import Icosahedron 

4from .winterbottom import Winterbottom 

5 

6__project__ = 'WulffPack' 

7__description__ = 'A package for making Wulff constructions' 

8__authors__ = ['J. Magnus Rahm', 'Paul Erhart'] 

9__copyright__ = '2024' 

10__email__ = 'wulffpack@materialsmodeling.org' 

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

12__maintainer__ = 'The WulffPack developers team' 

13__url__ = 'https://wulffpack.materialsmodeling.org/' 

14__version__ = '1.3' 

15 

16__all__ = ['SingleCrystal', 

17 'Decahedron', 

18 'Icosahedron', 

19 'Winterbottom']