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 500f7f4 commit c8fb1ab
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions biobb_structure_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from . import utils
name = "biobb_structure_utils"
__all__ = ["utils"]
__version__ = "4.2.0"
15 changes: 15 additions & 0 deletions biobb_structure_utils/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
from . import cat_pdb
from . import extract_atoms
from . import extract_chain
from . import extract_heteroatoms
from . import extract_residues
from . import extract_model
from . import extract_molecule
from . import remove_ligand
from . import remove_molecules
from . import closest_residues
from . import remove_pdb_water
from . import renumber_structure
from . import sort_gro_residues
from . import str_check_add_hydrogens
from . import structure_check
name = "utils"
__all__ = ["cat_pdb", "extract_atoms", "extract_chain", "extract_heteroatoms", "extract_residues", "extract_model", "extract_molecule", "remove_ligand", "remove_molecules", "closest_residues", "remove_pdb_water", "renumber_structure", "sort_gro_residues", "str_check_add_hydrogens", "structure_check"]

0 comments on commit c8fb1ab

Please sign in to comment.