Skip to content

Commit

Permalink
Add more information
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefano Moia committed Nov 30, 2022
1 parent fca3d88 commit 6dbcf26
Show file tree
Hide file tree
Showing 11 changed files with 741 additions and 0 deletions.
18 changes: 18 additions & 0 deletions physioqc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"""Hopefully importing everything."""

import pkgutil

from ._version import get_versions
from .operations import graph, laplacian, metrics, nifti, surrogates, timeseries

SKIP_MODULES = ["tests"]

__version__ = get_versions()["version"]
del get_versions

__all__ = []
for loader, module_name, is_pkg in pkgutil.walk_packages(__path__):
if "tests" not in module_name:
__all__.append(module_name)
_module = loader.find_module(module_name).load_module(module_name)
globals()[module_name] = _module
Loading

0 comments on commit 6dbcf26

Please sign in to comment.