Skip to content

Commit

Permalink
[FEATURE](__init__): Importing submodules when a module is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed Oct 16, 2024
1 parent d119dc6 commit 0287962
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions biobb_vs/__init__.py
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"
3 changes: 3 additions & 0 deletions biobb_vs/fpocket/__init__.py
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"]
4 changes: 4 additions & 0 deletions biobb_vs/utils/__init__.py
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"]
1 change: 1 addition & 0 deletions biobb_vs/vina/__init__.py
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"]

0 comments on commit 0287962

Please sign in to comment.