Skip to content
Snippets Groups Projects
Commit 64cfb3a3 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Import submodules automatically

parent 14ed66bc
No related branches found
No related tags found
No related merge requests found
......@@ -22,3 +22,14 @@ Biozentrum, University of Basel, Switzerland.
"""
__version__ = "${project.version}"
from . import iotools
from . import log
from . import pathtools
from . import strtools
# check if we're running in Jython, then also import the 'imagej' submodule:
import platform as _python_platform
if _python_platform.python_implementation() == "Jython":
from . import imagej
del _python_platform
"""ImageJ related functions, mostly convenience wrappers and combined workflows.
NOTE: this is only useful for Python (actually Jython) running within Fiji / ImageJ
and therefore will not be imported by the main 'imcflibs' package unless that
particular environment is detected.
"""
from . import bioformats
from . import misc
from . import prefs
from . import projections
from . import shading
from . import sjlog
from . import split
from . import stitching
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment