Page MenuHomec4science

__init__.py
No OneTemporary

File Metadata

Created
Tue, Jul 9, 23:22

__init__.py

""" __init__.py: fe engine tester module"""
__author__ = "Nicolas Richart"
__credits__ = [
"Nicolas Richart <nicolas.richart@epfl.ch>",
]
__copyright__ = "Copyright (©) 2016-2021 EPFL (Ecole Polytechnique Fédérale" \
" de Lausanne) Laboratory (LSMS - Laboratoire de Simulation" \
" en Mécanique des Solides)"
__license__ = "LGPLv3"
__all__ = []
from .py_engine import * # noqa: F401,F403
from . import py_engine as __pye # noqa: F401
__all__.append(__pye.__all__)

Event Timeline