setiastrosuitepro 1.7.1.post2__py3-none-any.whl → 1.7.3__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.
Potentially problematic release.
This version of setiastrosuitepro might be problematic. Click here for more details.
- setiastro/images/3dplanet.png +0 -0
- setiastro/saspro/__init__.py +9 -8
- setiastro/saspro/__main__.py +326 -285
- setiastro/saspro/_generated/build_info.py +2 -2
- setiastro/saspro/doc_manager.py +4 -1
- setiastro/saspro/gui/main_window.py +41 -2
- setiastro/saspro/gui/mixins/file_mixin.py +6 -2
- setiastro/saspro/gui/mixins/menu_mixin.py +1 -0
- setiastro/saspro/gui/mixins/toolbar_mixin.py +8 -1
- setiastro/saspro/imageops/serloader.py +101 -17
- setiastro/saspro/layers.py +186 -10
- setiastro/saspro/layers_dock.py +198 -5
- setiastro/saspro/legacy/image_manager.py +10 -4
- setiastro/saspro/planetprojection.py +3854 -0
- setiastro/saspro/resources.py +2 -0
- setiastro/saspro/save_options.py +45 -13
- setiastro/saspro/ser_stack_config.py +21 -1
- setiastro/saspro/ser_stacker.py +8 -2
- setiastro/saspro/ser_stacker_dialog.py +37 -10
- setiastro/saspro/ser_tracking.py +57 -35
- setiastro/saspro/serviewer.py +164 -16
- setiastro/saspro/subwindow.py +36 -1
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.3.dist-info}/METADATA +1 -1
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.3.dist-info}/RECORD +28 -26
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.3.dist-info}/WHEEL +0 -0
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.3.dist-info}/entry_points.txt +0 -0
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.3.dist-info}/licenses/LICENSE +0 -0
- {setiastrosuitepro-1.7.1.post2.dist-info → setiastrosuitepro-1.7.3.dist-info}/licenses/license.txt +0 -0
|
Binary file
|
setiastro/saspro/__init__.py
CHANGED
|
@@ -3,18 +3,19 @@ Seti Astro Suite Pro - Main Package
|
|
|
3
3
|
|
|
4
4
|
This package provides advanced astrophotography tools for image calibration,
|
|
5
5
|
stacking, registration, photometry, and visualization.
|
|
6
|
+
|
|
7
|
+
Important:
|
|
8
|
+
- __init__.py must remain import-safe (no UI side effects, no splash, no QApplication).
|
|
9
|
+
- Do NOT import setiastro.saspro.__main__ from here.
|
|
6
10
|
"""
|
|
7
11
|
|
|
8
|
-
|
|
12
|
+
__all__ = []
|
|
13
|
+
|
|
14
|
+
# Re-export commonly used items for convenience (safe imports only)
|
|
9
15
|
try:
|
|
10
16
|
from .doc_manager import DocManager, ImageDocument
|
|
11
17
|
from .subwindow import ImageSubWindow
|
|
12
18
|
__all__ = ["DocManager", "ImageDocument", "ImageSubWindow"]
|
|
13
|
-
except
|
|
14
|
-
# During initial setup, some modules may not be available
|
|
19
|
+
except Exception:
|
|
20
|
+
# During initial setup or partial installs, some modules may not be available
|
|
15
21
|
__all__ = []
|
|
16
|
-
|
|
17
|
-
# Expose main entry point for package script
|
|
18
|
-
from .__main__ import main
|
|
19
|
-
__all__.append("main")
|
|
20
|
-
|