-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from molssi-seamm/cleanup/description
Cleanup/description
- Loading branch information
Showing
6 changed files
with
75 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Top-level package for packmol step.""" | ||
|
||
__author__ = """Paul Saxe""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.0' | ||
""" | ||
packmol_step | ||
A step for building fluid boxes using Packmol | ||
""" | ||
|
||
# Bring up the classes so that they appear to be directly in | ||
# the packmol_step package. | ||
|
||
from packmol_step.packmol import PACKMOL # noqa: F401 | ||
from packmol_step.packmol_parameters import PACKMOL_Parameters # noqa: F401 | ||
from packmol_step.packmol_step import PACKMOLStep # noqa: F401 | ||
from packmol_step.tk_packmol import TkPACKMOL # noqa: F401 | ||
from packmol_step.packmol import Packmol # noqa: F401 | ||
from packmol_step.packmol_parameters import PackmolParameters # noqa: F401 | ||
from packmol_step.packmol_step import PackmolStep # noqa: F401 | ||
from packmol_step.tk_packmol import TkPackmol # noqa: F401 | ||
|
||
# Handle versioneer | ||
from ._version import get_versions | ||
__author__ = """Paul Saxe""" | ||
__email__ = '[email protected]' | ||
versions = get_versions() | ||
__version__ = versions['version'] | ||
__git_revision__ = versions['full-revisionid'] | ||
del get_versions, versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters