-
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
11 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,6 @@ | ||
from . import fpocket | ||
from . import vina | ||
from . import utils | ||
name = "biobb_vs" | ||
__all__ = ["fpocket", "vina", "utils"] | ||
__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 fpocket_run | ||
from . import fpocket_filter | ||
from . import fpocket_select | ||
name = "fpocket" | ||
__all__ = ["fpocket_run", "fpocket_filter", "fpocket_select"] |
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 bindingsite | ||
from . import box | ||
from . import box_residues | ||
from . import extract_model_pdbqt | ||
name = "utils" | ||
__all__ = ["bindingsite", "box", "box_residues", "extract_model_pdbqt"] |
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,3 @@ | ||
from . import autodock_vina_run | ||
name = "vina" | ||
__all__ = ["autodock_vina_run"] |