Skip to content

Commit

Permalink
Add module description docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Oct 25, 2024
1 parent 620be3d commit bf5851a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions emle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@
# avoid severe module import overheads when running the client code,
# which requires no EMLE functionality.

"""
Electrostatic Machine-Learned Embedding.
emle is a package for the calculation of electrostatic interactions in
molecular systems.
"""

from ._version import get_versions

__version__ = get_versions()["version"]
Expand Down
4 changes: 4 additions & 0 deletions emle/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
# avoid severe module import overheads when running the client code,
# which requires no EMLE functionality.

"""
Torch modules for EMLE calculations.
"""

from ._emle_base import EMLEBase
from ._emle import EMLE
from ._ani import ANI2xEMLE
Expand Down

0 comments on commit bf5851a

Please sign in to comment.