-
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.
[FEATURE](__init__): Importing submodules when a module is loaded
- Loading branch information
Showing
3 changed files
with
17 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,5 @@ | ||
from . import flexserv | ||
from . import pcasuite | ||
name = "biobb_flexserv" | ||
__all__ = ["flexserv", "pcasuite"] | ||
__version__ = "4.2.0" |
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,5 @@ | ||
from . import bd_run | ||
from . import dmd_run | ||
from . import nma_run | ||
name = "flexserv" | ||
__all__ = ["bd_run", "dmd_run", "nma_run"] |
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,14 @@ | ||
from . import pcz_zip | ||
from . import pcz_unzip | ||
from . import pcz_animate | ||
from . import pcz_bfactor | ||
from . import pcz_hinges | ||
from . import pcz_stiffness | ||
from . import pcz_similarity | ||
from . import pcz_collectivity | ||
from . import pcz_info | ||
from . import pcz_evecs | ||
from . import pcz_lindemann | ||
|
||
name = "pcasuite" | ||
__all__ = ["pcz_zip", "pcz_unzip", "pcz_animate", "pcz_bfactor", "pcz_hinges", "pcz_stiffness", "pcz_similarity", "pcz_collectivity", "pcz_info", "pcz_evecs", "pcz_lindemann"] |