generated from physiopy/physiopy-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stefano Moia
committed
Nov 30, 2022
1 parent
fca3d88
commit 6dbcf26
Showing
11 changed files
with
741 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 |
---|---|---|
@@ -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 |
Oops, something went wrong.