DAMASK_EICMD/python/damask/__init__.py

27 lines
794 B
Python
Raw Normal View History

2019-09-20 00:14:15 +05:30
"""Main aggregator."""
2017-11-21 16:11:02 +05:30
import os
with open(os.path.join(os.path.dirname(__file__),'VERSION')) as f:
2019-11-22 17:24:55 +05:30
version = f.readline()[1:-1]
name = 'damask'
# classes
from .environment import Environment # noqa
from .asciitable import ASCIItable # noqa
2019-10-31 15:15:34 +05:30
from .table import Table # noqa
from .config import Material # noqa
from .colormaps import Colormap, Color # noqa
2019-02-24 12:38:14 +05:30
from .orientation import Symmetry, Lattice, Rotation, Orientation # noqa
from .dadf5 import DADF5 # noqa
from .geom import Geom # noqa
from .solver import Solver # noqa
from .test import Test # noqa
from .util import extendableOption # noqa
# functions in modules
from . import mechanics # noqa