-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE](__init__): Importing submodules when a module is loaded
- Loading branch information
Showing
4 changed files
with
14 additions
and
0 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,3 +1,7 @@ | ||
from . import acpype | ||
from . import ambertools | ||
from . import babelm | ||
|
||
name = "biobb_chemistry" | ||
__all__ = ["acpype", "ambertools", "babelm"] | ||
__version__ = "4.2.1" |
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,2 +1,6 @@ | ||
from . import acpype_params_ac | ||
from . import acpype_params_cns | ||
from . import acpype_params_gmx | ||
from . import acpype_params_gmx_opls | ||
name = "acpype" | ||
__all__ = ["acpype_params_ac", "acpype_params_cns", "acpype_params_gmx", "acpype_params_gmx_opls"] |
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,2 +1,4 @@ | ||
from . import reduce_add_hydrogens | ||
from . import reduce_remove_hydrogens | ||
name = "ambertools" | ||
__all__ = ["reduce_add_hydrogens", "reduce_remove_hydrogens"] |
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,2 +1,6 @@ | ||
from . import babel_add_hydrogens | ||
from . import babel_convert | ||
from . import babel_minimize | ||
from . import babel_remove_hydrogens | ||
name = "babelm" | ||
__all__ = ["babel_add_hydrogens", "babel_convert", "babel_minimize", "babel_remove_hydrogens"] |