cubevis 0.5.2__py3-none-any.whl → 0.5.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cubevis/__init__.py +3 -0
- cubevis/__version__.py +1 -1
- cubevis/{apps → private/apps}/__init__.py +5 -5
- cubevis/private/apps/_interactiveclean.mustache +1498 -0
- cubevis/{apps → private/apps}/_interactiveclean.py +4 -4
- cubevis/{apps → private/apps}/_interactiveclean_wrappers.py +1 -1
- cubevis/private/casashell/createmask.py +1 -1
- cubevis/private/casashell/iclean.py +1 -1
- cubevis/private/casatasks/createmask.py +1 -1
- cubevis/private/casatasks/createregion.py +1 -1
- cubevis/private/casatasks/iclean.py +1 -1
- cubevis/utils/_import_protected_module.py +1 -1
- cubevis-0.5.10.dist-info/METADATA +68 -0
- {cubevis-0.5.2.dist-info → cubevis-0.5.10.dist-info}/RECORD +21 -20
- cubevis-0.5.2.dist-info/METADATA +0 -151
- /cubevis/{apps → private/apps}/_createmask.py +0 -0
- /cubevis/{apps → private/apps}/_createregion.py +0 -0
- /cubevis/{apps → private/apps}/_ms_raster.py +0 -0
- /cubevis/{apps → private/apps}/_plotants.py +0 -0
- /cubevis/{apps → private/apps}/_plotbandpass.py +0 -0
- {cubevis-0.5.2.dist-info → cubevis-0.5.10.dist-info}/WHEEL +0 -0
- {cubevis-0.5.2.dist-info → cubevis-0.5.10.dist-info}/licenses/LICENSE +0 -0
cubevis/__init__.py
CHANGED
cubevis/__version__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.5.
|
|
1
|
+
__version__ = '0.5.10'
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
# pylint: disable=wrong-import-position
|
|
29
29
|
'''End user applications supplied by ``cubevis``.'''
|
|
30
30
|
import sys
|
|
31
|
-
from
|
|
32
|
-
from
|
|
31
|
+
from cubevis.utils import copydoc, ImportProtectedModule
|
|
32
|
+
from cubevis.bokeh.state import initialize_session
|
|
33
33
|
initialize_session()
|
|
34
34
|
|
|
35
35
|
sys.modules[__name__].__class__ = ImportProtectedModule( __name__, { 'plotants': '._plotants',
|
|
@@ -37,8 +37,8 @@ sys.modules[__name__].__class__ = ImportProtectedModule( __name__, { 'plotants':
|
|
|
37
37
|
'CreateMask': '._createmask',
|
|
38
38
|
'CreateRegion': '._createregion',
|
|
39
39
|
'InteractiveClean': '._interactiveclean',
|
|
40
|
-
'iclean': '..
|
|
41
|
-
'createmask': '..
|
|
42
|
-
'createregion': '..
|
|
40
|
+
'iclean': '..casatasks.iclean',
|
|
41
|
+
'createmask': '..casatasks.createmask',
|
|
42
|
+
'createregion': '..casatasks.createregion',
|
|
43
43
|
'MsRaster': '._ms_raster',
|
|
44
44
|
} )
|