-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
9b2fd00
commit e0570d5
Showing
1 changed file
with
24 additions
and
6 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 |
---|---|---|
@@ -1,13 +1,31 @@ | ||
from importlib.metadata import version as _version | ||
|
||
__version__ = _version("multipers") | ||
# Doc | ||
import multipers.io | ||
import multipers.multiparameter_module_approximation | ||
import multipers.simplex_tree_multi | ||
import multipers.slicer | ||
import multipers.data | ||
import multipers.grids | ||
from multipers import ( | ||
data, | ||
grids, | ||
io, | ||
multiparameter_module_approximation, | ||
simplex_tree_multi, | ||
slicer, | ||
) | ||
from multipers._signed_measure_meta import signed_measure | ||
from multipers._slicer_meta import Slicer | ||
from multipers.multiparameter_module_approximation import module_approximation | ||
|
||
# Shortcuts | ||
from multipers.simplex_tree_multi import SimplexTreeMulti | ||
|
||
__all__ = [ | ||
"signed_measure", | ||
"module_approximation", | ||
"Slicer", | ||
"SimplexTreeMulti", | ||
"data", | ||
"grids", | ||
"io", | ||
"multiparameter_module_approximation", | ||
"slicer", | ||
"simplex_tree_multi", | ||
] |