Files
lammps/python/lammps/__init__.py
2021-02-09 12:29:14 -05:00

19 lines
363 B
Python

"""
LAMMPS module global members:
.. data:: __version__
Numerical representation of the LAMMPS version this
module was taken from. Has the same format as the
result of :py:func:`lammps.version`.
"""
from .constants import *
from .core import *
from .data import *
from .pylammps import *
# automatically updated during installation
__version__ = 0