mirror of
https://github.com/OpenFreeEnergy/openfe.git
synced 2026-06-04 22:25:51 +08:00
9 lines
263 B
Python
9 lines
263 B
Python
# This code is part of OpenFE and is licensed under the MIT license.
|
|
# For details, see https://github.com/OpenFreeEnergy/openfe
|
|
|
|
from .plugins import OFECommandPlugin
|
|
from . import commands
|
|
|
|
from importlib.metadata import version
|
|
__version__ = version("openfe")
|