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 7bd9c02 commit 6cb6543
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions biobb_flexserv/__init__.py
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"
3 changes: 3 additions & 0 deletions biobb_flexserv/flexserv/__init__.py
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"]
12 changes: 12 additions & 0 deletions biobb_flexserv/pcasuite/__init__.py
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"]

0 comments on commit 6cb6543

Please sign in to comment.