-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from molssi-seamm/cleanup/description
Cleanup/description
- Loading branch information
Showing
2 changed files
with
55 additions
and
27 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,10 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Top-level package for From SMILES step.""" | ||
|
||
__author__ = """Paul Saxe""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.0' | ||
""" | ||
from_smiles_step | ||
A step for generating a structure from a SMILES string. | ||
""" | ||
|
||
# Bring up the classes so that they appear to be directly in | ||
# the package. | ||
|
@@ -13,3 +12,12 @@ | |
from from_smiles_step.from_smiles import FromSMILES # noqa: F401 | ||
from from_smiles_step.from_smiles_parameters import FromSMILESParameters # noqa: F401 E501 | ||
from from_smiles_step.tk_from_smiles import TkFromSMILES # 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