DAMASK_EICMD/python/damask/__init__.py

26 lines
909 B
Python
Raw Normal View History

2019-09-20 00:14:15 +05:30
"""Main aggregator."""
import os as _os
import re as _re
name = 'damask'
with open(_os.path.join(_os.path.dirname(__file__),'VERSION')) as _f:
version = _re.sub(r'^v','',_f.readline().strip())
# classes
2019-12-13 01:19:16 +05:30
from .environment import Environment # noqa
2019-10-31 15:15:34 +05:30
from .table import Table # noqa
from .ktv import VTK # noqa
from .colormaps import Colormap, Color # noqa
2020-02-21 03:59:12 +05:30
from .rotation import Rotation # noqa
from .lattice import Symmetry, Lattice# noqa
2020-02-21 03:59:12 +05:30
from .orientation import Orientation # noqa
from .result import Result # noqa
from .geom import Geom # noqa
2019-12-13 03:28:37 +05:30
from .solver import Solver # noqa
# deprecated
from .asciitable import ASCIItable # noqa
from .util import extendableOption # noqa
from .config import Material # noqa
from .test import Test # noqa