19 lines
363 B
Python
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
|