setiastrosuitepro 1.6.0__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.

Files changed (174) hide show
  1. setiastro/__init__.py +2 -0
  2. setiastro/saspro/__init__.py +20 -0
  3. setiastro/saspro/__main__.py +784 -0
  4. setiastro/saspro/_generated/__init__.py +7 -0
  5. setiastro/saspro/_generated/build_info.py +2 -0
  6. setiastro/saspro/abe.py +1295 -0
  7. setiastro/saspro/abe_preset.py +196 -0
  8. setiastro/saspro/aberration_ai.py +694 -0
  9. setiastro/saspro/aberration_ai_preset.py +224 -0
  10. setiastro/saspro/accel_installer.py +218 -0
  11. setiastro/saspro/accel_workers.py +30 -0
  12. setiastro/saspro/add_stars.py +621 -0
  13. setiastro/saspro/astrobin_exporter.py +1007 -0
  14. setiastro/saspro/astrospike.py +153 -0
  15. setiastro/saspro/astrospike_python.py +1839 -0
  16. setiastro/saspro/autostretch.py +196 -0
  17. setiastro/saspro/backgroundneutral.py +560 -0
  18. setiastro/saspro/batch_convert.py +325 -0
  19. setiastro/saspro/batch_renamer.py +519 -0
  20. setiastro/saspro/blemish_blaster.py +488 -0
  21. setiastro/saspro/blink_comparator_pro.py +2923 -0
  22. setiastro/saspro/bundles.py +61 -0
  23. setiastro/saspro/bundles_dock.py +114 -0
  24. setiastro/saspro/cheat_sheet.py +168 -0
  25. setiastro/saspro/clahe.py +342 -0
  26. setiastro/saspro/comet_stacking.py +1377 -0
  27. setiastro/saspro/config.py +38 -0
  28. setiastro/saspro/config_bootstrap.py +40 -0
  29. setiastro/saspro/config_manager.py +316 -0
  30. setiastro/saspro/continuum_subtract.py +1617 -0
  31. setiastro/saspro/convo.py +1397 -0
  32. setiastro/saspro/convo_preset.py +414 -0
  33. setiastro/saspro/copyastro.py +187 -0
  34. setiastro/saspro/cosmicclarity.py +1564 -0
  35. setiastro/saspro/cosmicclarity_preset.py +407 -0
  36. setiastro/saspro/crop_dialog_pro.py +948 -0
  37. setiastro/saspro/crop_preset.py +189 -0
  38. setiastro/saspro/curve_editor_pro.py +2544 -0
  39. setiastro/saspro/curves_preset.py +375 -0
  40. setiastro/saspro/debayer.py +670 -0
  41. setiastro/saspro/debug_utils.py +29 -0
  42. setiastro/saspro/dnd_mime.py +35 -0
  43. setiastro/saspro/doc_manager.py +2634 -0
  44. setiastro/saspro/exoplanet_detector.py +2166 -0
  45. setiastro/saspro/file_utils.py +284 -0
  46. setiastro/saspro/fitsmodifier.py +744 -0
  47. setiastro/saspro/free_torch_memory.py +48 -0
  48. setiastro/saspro/frequency_separation.py +1343 -0
  49. setiastro/saspro/function_bundle.py +1594 -0
  50. setiastro/saspro/ghs_dialog_pro.py +660 -0
  51. setiastro/saspro/ghs_preset.py +284 -0
  52. setiastro/saspro/graxpert.py +634 -0
  53. setiastro/saspro/graxpert_preset.py +287 -0
  54. setiastro/saspro/gui/__init__.py +0 -0
  55. setiastro/saspro/gui/main_window.py +8494 -0
  56. setiastro/saspro/gui/mixins/__init__.py +33 -0
  57. setiastro/saspro/gui/mixins/dock_mixin.py +263 -0
  58. setiastro/saspro/gui/mixins/file_mixin.py +445 -0
  59. setiastro/saspro/gui/mixins/geometry_mixin.py +403 -0
  60. setiastro/saspro/gui/mixins/header_mixin.py +441 -0
  61. setiastro/saspro/gui/mixins/mask_mixin.py +421 -0
  62. setiastro/saspro/gui/mixins/menu_mixin.py +361 -0
  63. setiastro/saspro/gui/mixins/theme_mixin.py +367 -0
  64. setiastro/saspro/gui/mixins/toolbar_mixin.py +1324 -0
  65. setiastro/saspro/gui/mixins/update_mixin.py +309 -0
  66. setiastro/saspro/gui/mixins/view_mixin.py +435 -0
  67. setiastro/saspro/halobgon.py +462 -0
  68. setiastro/saspro/header_viewer.py +445 -0
  69. setiastro/saspro/headless_utils.py +88 -0
  70. setiastro/saspro/histogram.py +753 -0
  71. setiastro/saspro/history_explorer.py +939 -0
  72. setiastro/saspro/image_combine.py +414 -0
  73. setiastro/saspro/image_peeker_pro.py +1596 -0
  74. setiastro/saspro/imageops/__init__.py +37 -0
  75. setiastro/saspro/imageops/mdi_snap.py +292 -0
  76. setiastro/saspro/imageops/scnr.py +36 -0
  77. setiastro/saspro/imageops/starbasedwhitebalance.py +210 -0
  78. setiastro/saspro/imageops/stretch.py +244 -0
  79. setiastro/saspro/isophote.py +1179 -0
  80. setiastro/saspro/layers.py +208 -0
  81. setiastro/saspro/layers_dock.py +714 -0
  82. setiastro/saspro/lazy_imports.py +193 -0
  83. setiastro/saspro/legacy/__init__.py +2 -0
  84. setiastro/saspro/legacy/image_manager.py +2226 -0
  85. setiastro/saspro/legacy/numba_utils.py +3659 -0
  86. setiastro/saspro/legacy/xisf.py +1071 -0
  87. setiastro/saspro/linear_fit.py +534 -0
  88. setiastro/saspro/live_stacking.py +1830 -0
  89. setiastro/saspro/log_bus.py +5 -0
  90. setiastro/saspro/logging_config.py +460 -0
  91. setiastro/saspro/luminancerecombine.py +309 -0
  92. setiastro/saspro/main_helpers.py +201 -0
  93. setiastro/saspro/mask_creation.py +928 -0
  94. setiastro/saspro/masks_core.py +56 -0
  95. setiastro/saspro/mdi_widgets.py +353 -0
  96. setiastro/saspro/memory_utils.py +666 -0
  97. setiastro/saspro/metadata_patcher.py +75 -0
  98. setiastro/saspro/mfdeconv.py +3826 -0
  99. setiastro/saspro/mfdeconv_earlystop.py +71 -0
  100. setiastro/saspro/mfdeconvcudnn.py +3263 -0
  101. setiastro/saspro/mfdeconvsport.py +2382 -0
  102. setiastro/saspro/minorbodycatalog.py +567 -0
  103. setiastro/saspro/morphology.py +382 -0
  104. setiastro/saspro/multiscale_decomp.py +1290 -0
  105. setiastro/saspro/nbtorgb_stars.py +531 -0
  106. setiastro/saspro/numba_utils.py +3044 -0
  107. setiastro/saspro/numba_warmup.py +141 -0
  108. setiastro/saspro/ops/__init__.py +9 -0
  109. setiastro/saspro/ops/command_help_dialog.py +623 -0
  110. setiastro/saspro/ops/command_runner.py +217 -0
  111. setiastro/saspro/ops/commands.py +1594 -0
  112. setiastro/saspro/ops/script_editor.py +1102 -0
  113. setiastro/saspro/ops/scripts.py +1413 -0
  114. setiastro/saspro/ops/settings.py +560 -0
  115. setiastro/saspro/parallel_utils.py +554 -0
  116. setiastro/saspro/pedestal.py +121 -0
  117. setiastro/saspro/perfect_palette_picker.py +1053 -0
  118. setiastro/saspro/pipeline.py +110 -0
  119. setiastro/saspro/pixelmath.py +1600 -0
  120. setiastro/saspro/plate_solver.py +2435 -0
  121. setiastro/saspro/project_io.py +797 -0
  122. setiastro/saspro/psf_utils.py +136 -0
  123. setiastro/saspro/psf_viewer.py +549 -0
  124. setiastro/saspro/pyi_rthook_astroquery.py +95 -0
  125. setiastro/saspro/remove_green.py +314 -0
  126. setiastro/saspro/remove_stars.py +1625 -0
  127. setiastro/saspro/remove_stars_preset.py +404 -0
  128. setiastro/saspro/resources.py +472 -0
  129. setiastro/saspro/rgb_combination.py +207 -0
  130. setiastro/saspro/rgb_extract.py +19 -0
  131. setiastro/saspro/rgbalign.py +723 -0
  132. setiastro/saspro/runtime_imports.py +7 -0
  133. setiastro/saspro/runtime_torch.py +754 -0
  134. setiastro/saspro/save_options.py +72 -0
  135. setiastro/saspro/selective_color.py +1552 -0
  136. setiastro/saspro/sfcc.py +1425 -0
  137. setiastro/saspro/shortcuts.py +2807 -0
  138. setiastro/saspro/signature_insert.py +1099 -0
  139. setiastro/saspro/stacking_suite.py +17712 -0
  140. setiastro/saspro/star_alignment.py +7420 -0
  141. setiastro/saspro/star_alignment_preset.py +329 -0
  142. setiastro/saspro/star_metrics.py +49 -0
  143. setiastro/saspro/star_spikes.py +681 -0
  144. setiastro/saspro/star_stretch.py +470 -0
  145. setiastro/saspro/stat_stretch.py +502 -0
  146. setiastro/saspro/status_log_dock.py +78 -0
  147. setiastro/saspro/subwindow.py +3267 -0
  148. setiastro/saspro/supernovaasteroidhunter.py +1712 -0
  149. setiastro/saspro/swap_manager.py +99 -0
  150. setiastro/saspro/torch_backend.py +89 -0
  151. setiastro/saspro/torch_rejection.py +434 -0
  152. setiastro/saspro/view_bundle.py +1555 -0
  153. setiastro/saspro/wavescale_hdr.py +624 -0
  154. setiastro/saspro/wavescale_hdr_preset.py +100 -0
  155. setiastro/saspro/wavescalede.py +657 -0
  156. setiastro/saspro/wavescalede_preset.py +228 -0
  157. setiastro/saspro/wcs_update.py +374 -0
  158. setiastro/saspro/whitebalance.py +456 -0
  159. setiastro/saspro/widgets/__init__.py +48 -0
  160. setiastro/saspro/widgets/common_utilities.py +305 -0
  161. setiastro/saspro/widgets/graphics_views.py +122 -0
  162. setiastro/saspro/widgets/image_utils.py +518 -0
  163. setiastro/saspro/widgets/preview_dialogs.py +280 -0
  164. setiastro/saspro/widgets/spinboxes.py +275 -0
  165. setiastro/saspro/widgets/themed_buttons.py +13 -0
  166. setiastro/saspro/widgets/wavelet_utils.py +299 -0
  167. setiastro/saspro/window_shelf.py +185 -0
  168. setiastro/saspro/xisf.py +1123 -0
  169. setiastrosuitepro-1.6.0.dist-info/METADATA +266 -0
  170. setiastrosuitepro-1.6.0.dist-info/RECORD +174 -0
  171. setiastrosuitepro-1.6.0.dist-info/WHEEL +4 -0
  172. setiastrosuitepro-1.6.0.dist-info/entry_points.txt +6 -0
  173. setiastrosuitepro-1.6.0.dist-info/licenses/LICENSE +674 -0
  174. setiastrosuitepro-1.6.0.dist-info/licenses/license.txt +2580 -0
@@ -0,0 +1,266 @@
1
+ Metadata-Version: 2.4
2
+ Name: setiastrosuitepro
3
+ Version: 1.6.0
4
+ Summary: Seti Astro Suite Pro - Advanced astrophotography toolkit for image calibration, stacking, registration, photometry, and visualization
5
+ License: GPL-3.0
6
+ License-File: LICENSE
7
+ License-File: license.txt
8
+ Keywords: astrophotography,astronomy,image-processing,photometry
9
+ Author: Franklin Marek
10
+ Author-email: info@setiastro.com
11
+ Requires-Python: >=3.10,<4.0
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
22
+ Requires-Dist: Pillow
23
+ Requires-Dist: PyQt6
24
+ Requires-Dist: astroalign
25
+ Requires-Dist: astropy
26
+ Requires-Dist: astroquery
27
+ Requires-Dist: exifread
28
+ Requires-Dist: imageio
29
+ Requires-Dist: jplephem
30
+ Requires-Dist: lightkurve
31
+ Requires-Dist: lz4
32
+ Requires-Dist: matplotlib
33
+ Requires-Dist: numba
34
+ Requires-Dist: numpy
35
+ Requires-Dist: oktopus
36
+ Requires-Dist: onnx
37
+ Requires-Dist: onnxruntime
38
+ Requires-Dist: onnxruntime-directml ; sys_platform == "win32"
39
+ Requires-Dist: opencv-python-headless
40
+ Requires-Dist: pandas
41
+ Requires-Dist: photutils
42
+ Requires-Dist: plotly
43
+ Requires-Dist: psutil
44
+ Requires-Dist: pyqtgraph
45
+ Requires-Dist: pytz
46
+ Requires-Dist: pywavelets
47
+ Requires-Dist: rawpy
48
+ Requires-Dist: reproject
49
+ Requires-Dist: requests
50
+ Requires-Dist: scipy
51
+ Requires-Dist: sep
52
+ Requires-Dist: skyfield
53
+ Requires-Dist: tifffile
54
+ Requires-Dist: tzlocal
55
+ Requires-Dist: xisf
56
+ Requires-Dist: zstandard
57
+ Project-URL: Homepage, https://www.setiastro.com
58
+ Project-URL: Repository, https://github.com/setiastro/setiastrosuitepro
59
+ Description-Content-Type: text/markdown
60
+
61
+ # Seti Astro Suite Pro (SASpro)
62
+
63
+ ### Author: Franklin Marek
64
+ #### Website: [www.setiastro.com](http://www.setiastro.com)
65
+
66
+ ### Other contributors:
67
+ - Fabio Tempera: https://github.com/Ft2801
68
+
69
+ ---
70
+
71
+ ## Overview
72
+ Seti Astro Suite Pro (SASpro) is an advanced astrophotography toolkit for image calibration, stacking, registration, photometry, and visualization. It targets both amateur and professional users by offering a graphical user interface, batch processing scripts, and extension points for automation.
73
+
74
+ Key goals:
75
+ - Produce repeatable, high-quality astrophotography results
76
+ - Expose advanced algorithms through an approachable GUI
77
+ - Keep the codebase modular and extensible for community contributions
78
+
79
+ SASpro is distributed as donationware — free to use, with an optional suggested donation.
80
+
81
+ ---
82
+
83
+ ## Features
84
+ - Multi-format image support: FITS, XISF, TIFF, RAW, PNG, JPEG
85
+ - Calibration pipelines (bias/dark/flat), registration and stacking
86
+ - Star detection, aperture photometry, astrometry helpers
87
+ - Color calibration, white balance, background neutralization
88
+ - Blemish removal, aberration correction, and AI-based tools
89
+ - Batch processing and scripting interfaces
90
+ - Catalog support and CSV-based custom catalogs
91
+ - Export and integration helpers (e.g., AstroBin)
92
+
93
+ ---
94
+
95
+ ## Architecture and Project Layout
96
+ This project follows a modular layout. High-level modules and responsibilities:
97
+
98
+ - `pro/` - Primary application modules, UI, resources and business logic.
99
+ - `imageops/` - Image processing utilities and algorithms.
100
+ - `ops/` - Application-level operations, settings, and script runner.
101
+ - `scripts/` - Example scripts and small utilities that demonstrate automation.
102
+ - `data/` - Bundled data files and catalogs. (See `data/catalogs/` for CSV files.)
103
+ - `logs/` - Runtime logs produced during development or packaged runs.
104
+ - `config/` - Packaging specs and configuration files.
105
+ - `build/` - Packaging and distribution scripts.
106
+
107
+ Files of note:
108
+ - `setiastrosuitepro.py` - Application entrypoint used for development and direct runs.
109
+ - `setiastrosuitepro_mac.spec` - PyInstaller spec for macOS packaging.
110
+ - `SASP_data.fits` - Large dataset used by the app.
111
+ - `astrobin_filters.csv` and other CSV catalogs are under `data/catalogs/`.
112
+
113
+ Example tree (abridged):
114
+
115
+ ```
116
+ setiastrosuitepro/
117
+ ├── pro/
118
+ ├── imageops/
119
+ ├── ops/
120
+ ├── scripts/
121
+ ├── data/
122
+ │ ├── SASP_data.fits
123
+ │ └── catalogs/
124
+ │ ├── astrobin_filters.csv
125
+ │ └── celestial_catalog.csv
126
+ ├── logs/
127
+ ├── config/
128
+ ├── build/
129
+ ├── requirements.txt
130
+ ├── setiastrosuitepro.py
131
+ └── README.md
132
+ ```
133
+
134
+ ---
135
+
136
+ ## Quick Start — Development (Windows PowerShell example)
137
+ This section shows a minimal reproducible development setup using a Python virtual environment.
138
+
139
+ 1. Open PowerShell and navigate to the project root.
140
+
141
+ 2. Create and activate a virtual environment:
142
+
143
+ ```powershell
144
+ python -m venv .venv
145
+ .\.venv\Scripts\Activate.ps1
146
+ ```
147
+
148
+ 3. Upgrade pip and install dependencies:
149
+
150
+ ```powershell
151
+ python -m pip install --upgrade pip
152
+ pip install -r requirements.txt
153
+ ```
154
+
155
+ 4. Run the application (development mode):
156
+
157
+ ```powershell
158
+ python setiastrosuitepro.py
159
+ ```
160
+
161
+ Notes:
162
+ - Use `Activate.bat` on Windows CMD, or `source .venv/bin/activate` on macOS/Linux.
163
+ - If you run into permission issues with `Activate.ps1`, you may need to change the execution policy temporarily:
164
+
165
+ ```powershell
166
+ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
167
+ ```
168
+
169
+ ---
170
+
171
+ ## Dependency Management
172
+
173
+ This project uses [Poetry](https://python-poetry.org/) for dependency management. The `requirements.txt` file is automatically generated from `pyproject.toml` to maintain backward compatibility with users who prefer `pip`.
174
+
175
+ **For maintainers/contributors:**
176
+ - Dependencies are defined in `pyproject.toml`
177
+ - After modifying dependencies, regenerate `requirements.txt`:
178
+ ```powershell
179
+ poetry run python ops/export_requirements.py
180
+ ```
181
+ - Or manually: `poetry export -f requirements.txt --without-hashes --without dev -o requirements.txt`
182
+
183
+ **For users:**
184
+ - Continue using `pip install -r requirements.txt` as usual
185
+ - The `requirements.txt` file is kept up-to-date and ready to use
186
+
187
+ ---
188
+
189
+ ## Running a Packaged App
190
+ - Packagers like PyInstaller or similar are used to create distributables. See `setiastrosuitepro_mac.spec` and `create_dmg.sh` for packaging examples.
191
+ - When packaged, resources such as `SASP_data.fits` and `astrobin_filters.csv` are expected under the internal resources path. The application code resolves their paths using the `pro.resources` helpers.
192
+
193
+ ---
194
+
195
+ ## Data & Catalogs
196
+ - All CSV catalogs and reference data are in `data/catalogs/`.
197
+ - Large dataset files (e.g. `SASP_data.fits`) are in `data/` and are added to `.gitignore` when appropriate to avoid committing large binaries.
198
+ - If you add custom catalogs, follow the existing CSV schema and update `pro/resources.py` or use `get_data_path()` helper to resolve them.
199
+
200
+ ---
201
+
202
+ ## Logging
203
+ - During development the app writes `saspro.log` into the project `logs/` directory (or into per-platform user log directories when running installed builds).
204
+ - Log file location logic is implemented in `setiastrosuitepro.py` — keep `logs/` writeable for easier debugging.
205
+
206
+ ---
207
+
208
+ ## Testing
209
+ - Unit and integration tests can be created under a `tests/` directory and run with `pytest`.
210
+ - Example:
211
+
212
+ ```powershell
213
+ pip install pytest
214
+ pytest -q
215
+ ```
216
+
217
+ ---
218
+
219
+ ## Packaging Notes
220
+ - The repository contains a PyInstaller `.spec` file and helper scripts for macOS packaging.
221
+ - Typical packaging flow (example with PyInstaller):
222
+
223
+ ```powershell
224
+ pip install pyinstaller
225
+ pyinstaller --clean -y config\setiastrosuitepro_mac.spec
226
+ ```
227
+
228
+ Adjust spec paths to include `data/` and `data/catalogs/` as needed.
229
+
230
+ ---
231
+
232
+ ## Contributing
233
+ - Fork the repository and create a feature branch.
234
+ - Keep changes atomic and include tests when possible.
235
+ - Open a pull request describing the change and the reasoning.
236
+ - See `CONTRIBUTING.md` for repository-specific guidelines.
237
+
238
+ ---
239
+
240
+ ## Troubleshooting
241
+ - If the app cannot find a CSV or FITS file, verify the `data/` and `data/catalogs/` directories are present in the project root or that packaged resources are included during build.
242
+ - Common issues:
243
+ - Missing dependencies: run `pip install -r requirements.txt`.
244
+ - Permission errors when writing logs: ensure `logs/` is writeable or run with elevated privileges during packaging.
245
+
246
+ If you hit a reproducible bug, open an issue and attach the `saspro.log` file.
247
+
248
+ ---
249
+
250
+ ## License
251
+ - SASpro is licensed under **GNU GPLv3**. See `LICENSE` for details.
252
+
253
+ ---
254
+
255
+ ## Acknowledgments
256
+ Special thanks to the open-source projects and contributors used by SASpro.
257
+
258
+ ---
259
+
260
+ ## Contact & Links
261
+ - Website: https://www.setiastro.com
262
+ - Source: https://github.com/setiastro/setiastrosuitepro
263
+ - Issues: https://github.com/setiastro/setiastrosuitepro/issues
264
+
265
+ ---
266
+
@@ -0,0 +1,174 @@
1
+ setiastro/__init__.py,sha256=6YooJnQdUlD9Md_Gbi3O4mapGn2X1BKFczNwHCkz1XY,33
2
+ setiastro/saspro/__init__.py,sha256=C6Puq5PQr3n0aJ-2i_YAaUhTjPI-pcSzie3_tij3hhw,608
3
+ setiastro/saspro/__main__.py,sha256=ROMSXwMEAhs2HalmSRWniwpWYMrQw-lPONfYZ1oQDG4,30117
4
+ setiastro/saspro/_generated/__init__.py,sha256=HbruQfKNbbVL4kh_t4oVG3UeUieaW8MUaqIcDCmnTvA,197
5
+ setiastro/saspro/_generated/build_info.py,sha256=wya5fFcWunBxXB1T4v-6bsatqWosTOFCUO9qk3yVEh0,88
6
+ setiastro/saspro/abe.py,sha256=BWCo3TygX0gLoWJ2y5AxLpzi5RU30K-auDGUXKl5Hz4,56293
7
+ setiastro/saspro/abe_preset.py,sha256=u9t16yTb9v98tLjhvh496Fsp3Z-dNiBSs5itnAaJwh8,7750
8
+ setiastro/saspro/aberration_ai.py,sha256=U5g5s0Y6OjFmGp-8xscY8whC_Vz9bNbjUxAm8nh4Jnk,26552
9
+ setiastro/saspro/aberration_ai_preset.py,sha256=xwodvMH77DA4j7-M4tbXFp5bAjAx-cTLENir6oqbfcc,8910
10
+ setiastro/saspro/accel_installer.py,sha256=OSt66m7hrENHTx92Ib4xDyD3xy6X_TU4XeMbizBqRq4,9483
11
+ setiastro/saspro/accel_workers.py,sha256=efFvyg6v0AkMF4liVcVqooHWEHhk-c2J9rRx6XAJGv4,1141
12
+ setiastro/saspro/add_stars.py,sha256=nDsOoAqQUUH6s4Dmc1KmD2WdeW3n6jAMmdFlY5cDXJA,24312
13
+ setiastro/saspro/astrobin_exporter.py,sha256=FNUkK4I1y24LIOQsSWdHrhU-Gajw2_Yx8pVJAMlpM7w,46334
14
+ setiastro/saspro/astrospike.py,sha256=Or-14MS3iZrn3q1teNf-BkjVdMCsZYaON7T95dm96oI,5930
15
+ setiastro/saspro/astrospike_python.py,sha256=f6M1g6LM9hTumhcAXw0mzlzKIUX6Ste1oZ5G4-5ake8,72486
16
+ setiastro/saspro/autostretch.py,sha256=38q0UTesHU6OtIanAHsIipkY094BVwaMwu3ujsIoWZo,7524
17
+ setiastro/saspro/backgroundneutral.py,sha256=WkQy3KxAyfMQ5A99w6MhyWHDK8AQEgBZN_oNBwrUPzQ,21881
18
+ setiastro/saspro/batch_convert.py,sha256=_pPKK-V1MbkT0DxXe98xM1pTVOgWcRB_VEW-pDUzKVg,12186
19
+ setiastro/saspro/batch_renamer.py,sha256=3b39XOc4wiqreOp21HnwoYtRTgXBQuc19FAW-oDCbwk,21376
20
+ setiastro/saspro/blemish_blaster.py,sha256=jjDRqgZFViCtfGjBoCJ4QHVnn0x-8Qltr53N-bkQe5w,20905
21
+ setiastro/saspro/blink_comparator_pro.py,sha256=O8oLcu5ZUZCSSBr5rHUngOazldDbsBARnM-M9gEIV1E,119780
22
+ setiastro/saspro/bundles.py,sha256=jWMYpalOcaMQ1QgikseOOmF7bBzDz9aykhRddaTsReQ,1892
23
+ setiastro/saspro/bundles_dock.py,sha256=IEAJEOEEe7V4NvsmClMygTf55LXN3SkV4e23K1erzkc,4441
24
+ setiastro/saspro/cheat_sheet.py,sha256=l_8evcFJ1YEC3jiZ1MCDMf41Lue6zIZDV58bZvdTpNA,6355
25
+ setiastro/saspro/clahe.py,sha256=hHeP6AHvzSXFZLpG1l-vllR7yUcFtGBAqpZHZ-HQhR8,13745
26
+ setiastro/saspro/comet_stacking.py,sha256=EDlXQlxsmvwlBKmNMgSetgINkmpT3UMiajL_QTjkuO8,56341
27
+ setiastro/saspro/config.py,sha256=FhvWG-efVdzuEPef-eOezem-YaFgnGNCl86XmkruGYE,1319
28
+ setiastro/saspro/config_bootstrap.py,sha256=5em6r29-PA0nnX7M20NGAteQZ_8ecilGsbPRYF_4yIo,1236
29
+ setiastro/saspro/config_manager.py,sha256=lDHmEDfnj40CGPcD-U4ybpZiR6uJVimcDCQXtQ38PEA,10758
30
+ setiastro/saspro/continuum_subtract.py,sha256=Fvabnq-aHTXfS1Y8wTnNAwBtkS-JV9hEia8TX_T2y3g,66043
31
+ setiastro/saspro/convo.py,sha256=QTuhnOzWW2Y03jeSiM252DEFXYJUpkDZ2Uchv-YI6_g,67239
32
+ setiastro/saspro/convo_preset.py,sha256=31Fzk6ssA3lHuM5vehYOpFNVdIyRNNpL78Ts69ivWKk,20013
33
+ setiastro/saspro/copyastro.py,sha256=_EFd9MVOb04_qrKheuTaxI5_dnrdUAxl7UZDlj-pGJY,7176
34
+ setiastro/saspro/cosmicclarity.py,sha256=wAs8oHAR29CnRnAjblIyImVUD1GwWNB1Xwfpv_B7ATA,67856
35
+ setiastro/saspro/cosmicclarity_preset.py,sha256=1nUTzC3nFe79pyWTBvNyvUL-MfTWC4SbOUvgJHA80v8,17853
36
+ setiastro/saspro/crop_dialog_pro.py,sha256=9OqljcNB1CLJbnDKo68VxsfrzIXP48uFzzEKnCoeNaA,39394
37
+ setiastro/saspro/crop_preset.py,sha256=ubN3BZUt5okwe4qOYScJCQv0YV8PewVciCLUDo4pGOk,7033
38
+ setiastro/saspro/curve_editor_pro.py,sha256=y7CwYgO0XVBRYrrS0I0M4a_Dtu_y8X_ydY2eA9iY3_0,103671
39
+ setiastro/saspro/curves_preset.py,sha256=Y_SbmM5DmMqvQRCuluo3xgFNOnAQTabZjlhZrP_kFFM,13645
40
+ setiastro/saspro/debayer.py,sha256=Tz1lRc0IEkjHJ-3sJhKxym5rXB519D8h3_WqkqY914E,25141
41
+ setiastro/saspro/debug_utils.py,sha256=uYQne3MHxg_R7y17NqKFj1_befrmjzOI3_jD4JKovnA,1085
42
+ setiastro/saspro/dnd_mime.py,sha256=QNG97JQJc3xNQ5cPD4zwbC7OZTf9BzqjXE2SvZV9H5Q,1143
43
+ setiastro/saspro/doc_manager.py,sha256=m7gjEYqF1j3C7CmEB_GPdILyAMP2vJ5yOMLlxzJ3E1k,103163
44
+ setiastro/saspro/exoplanet_detector.py,sha256=Roj612TepSfx-cePxNPLvDTEXQfiCKAP6N3X0dMYNeg,93482
45
+ setiastro/saspro/file_utils.py,sha256=zB2BqVnDVLbg_5eO3PIFgYu_Ulm5M3MXQUuzNdvO6Q4,7569
46
+ setiastro/saspro/fitsmodifier.py,sha256=QBvswgdJx4ceUU5iIK6xqrBn4KD6nA9ySbimt7HECxg,29634
47
+ setiastro/saspro/free_torch_memory.py,sha256=mbyB16clbPm71wCdhtJ6PjOkGuQ_c0GS6OopYdPhlLc,1461
48
+ setiastro/saspro/frequency_separation.py,sha256=FAoEPfE61WEQPdGZwjgbIF_PNGIU0C0H5JkcczZNFyE,57064
49
+ setiastro/saspro/function_bundle.py,sha256=G2X_asDOsJapk0OUoQBVUWe1QCXTCv_I0vBOSmMCuz8,58165
50
+ setiastro/saspro/ghs_dialog_pro.py,sha256=tpJid72MY-uy8joiPdczYaJ3DzL5JxcufioBaXwRfek,26796
51
+ setiastro/saspro/ghs_preset.py,sha256=Zw3MJH5rEz7nqLdlmRBm3vYXgyopoupyDGAhM-PRXqc,10477
52
+ setiastro/saspro/graxpert.py,sha256=XzdFqmE9P5gbXaDtZiIONQbpowHHKDtwSNOpMevsw34,22431
53
+ setiastro/saspro/graxpert_preset.py,sha256=ESds2NPMPfsBHWNBfyYZ1rFpQxZ9gPOtxwz8enHfFfc,10719
54
+ setiastro/saspro/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ setiastro/saspro/gui/main_window.py,sha256=JU7gtFX12wXCoGVLcLAbBTkcnieRV_GcZXZu16G0c1I,344030
56
+ setiastro/saspro/gui/mixins/__init__.py,sha256=ubdTIri0xoRs6MwDnEaVsAHbMxuPqz0CZcYcue3Mkcc,836
57
+ setiastro/saspro/gui/mixins/dock_mixin.py,sha256=Nl19x2jXiAscdftfN7hE0_NmkGhsYV8AsVIHF8eQKp8,10364
58
+ setiastro/saspro/gui/mixins/file_mixin.py,sha256=Rt3ZRygmBG1s3HnEEv8DzASPpjzmnNHK8BPfZCHVIFs,16519
59
+ setiastro/saspro/gui/mixins/geometry_mixin.py,sha256=hrYWpHzXDi-LfKBTbCJIC97SjP7ZXIXX9CCQf4VL0gE,15347
60
+ setiastro/saspro/gui/mixins/header_mixin.py,sha256=6Ripei24WEF0k7xitEHuxQeJVxfbLtXabNWhqbzcpSQ,17154
61
+ setiastro/saspro/gui/mixins/mask_mixin.py,sha256=A4YnaN-CxnTVRZsPS28sxhzORIi7hLQPn3zW_6mOg1g,15585
62
+ setiastro/saspro/gui/mixins/menu_mixin.py,sha256=6Kmg1ZYgtJrwVKme3cAnaKc0WtXxGpTouRhqd4TIrQQ,14053
63
+ setiastro/saspro/gui/mixins/theme_mixin.py,sha256=p8AmPuCa7h9loKHTcbkiX7-Uj41EnILSZ7j5WavWEkU,15523
64
+ setiastro/saspro/gui/mixins/toolbar_mixin.py,sha256=q4oOuzm1W40OyIaLgjTn2TBDGIlBNcmav6WznMiGJ6A,64291
65
+ setiastro/saspro/gui/mixins/update_mixin.py,sha256=ea4Ax00A1RVxpswIfCvp8wojMgw95jsWtOcmY0vu12U,12009
66
+ setiastro/saspro/gui/mixins/view_mixin.py,sha256=QOEfI9CYSEFFLLeAec8yBGqKMPm0NLQ1bbmhv1miWw4,16227
67
+ setiastro/saspro/halobgon.py,sha256=qjn5gjipzTLBOxLqrfp5GE2rSd8iopmXKDxlcw4jvAg,18897
68
+ setiastro/saspro/header_viewer.py,sha256=NxNl-fXSSmLf-sqd6MjUALEj_hbyqOom3UcB3FrVhKE,17028
69
+ setiastro/saspro/headless_utils.py,sha256=Zz7yozPAcSNGqZOf3InecK9nvyOZVzziOVVJatF_Yio,2646
70
+ setiastro/saspro/histogram.py,sha256=339VqpSrxrYHCbyXar0y68nNIgZ0FQnY5XBdzpsgl68,28563
71
+ setiastro/saspro/history_explorer.py,sha256=7NTfWgDoAP7GFed_YpZbpje9D_HG7sU-ctlN3IIvBlc,34631
72
+ setiastro/saspro/image_combine.py,sha256=YM9iDeySZWilWhR3xK7__N9afikNXbBpx6D-NBxx628,17833
73
+ setiastro/saspro/image_peeker_pro.py,sha256=5ME4eVwZVlIW0w0OT6M-1PdDEC3gvJday2y487Plijc,61227
74
+ setiastro/saspro/imageops/__init__.py,sha256=CE9mHOsruHOQ5bYOHr1_fhxd9sdK1W9BpAimo-r5V8w,1084
75
+ setiastro/saspro/imageops/mdi_snap.py,sha256=Xyogrv3N0KRAKcfC65hy_PKG6ZktjmwDBisCQ_cP9pY,10117
76
+ setiastro/saspro/imageops/scnr.py,sha256=jLHxBU4KQ9Mu61Cym5YUq0pwxajJmGrPQRV2pug9LXE,1330
77
+ setiastro/saspro/imageops/starbasedwhitebalance.py,sha256=u0HfLDH79XjqjuS1zIOm3sEWdp5DIpYEDhy-i13JfIY,7753
78
+ setiastro/saspro/imageops/stretch.py,sha256=S-JYFEq-e2NIH-CDnrj9YFg7Y4UJXxFl23uKkLbW-qI,8712
79
+ setiastro/saspro/isophote.py,sha256=MW4-IcMCsIYgreTluacfIwnj0rAV-a1AKonSvg3y1Rg,53442
80
+ setiastro/saspro/layers.py,sha256=SAMnwlL9QUDC9o9TZEosKkCoI4tumjAAqY7UvRmfDJw,6608
81
+ setiastro/saspro/layers_dock.py,sha256=57NCZGDTBfWBo3ydzxzJRIQ2OPcGfLL-wnnb1GNFsv8,28280
82
+ setiastro/saspro/lazy_imports.py,sha256=0M-4zklRGlqt5tvV6XZEFm958cRrOkxrjvSp_Ib1_zA,6564
83
+ setiastro/saspro/legacy/__init__.py,sha256=NjuxU-id3METsQ6tNd53YVqDTZK6mEz7uYjLzguCdNQ,121
84
+ setiastro/saspro/legacy/image_manager.py,sha256=gb_bstV5xQvJZJpjxHZIGNSk_a8YA8Tr6G1fCgl2Syg,96893
85
+ setiastro/saspro/legacy/numba_utils.py,sha256=NPtIpAqmlyW-5KZrEDJuZuALQO1W0TE6tAmspVMYW8c,134654
86
+ setiastro/saspro/legacy/xisf.py,sha256=f_YpDc0mBczjDViw0276DiAN4EHokc9ycXfZBl2emwQ,46153
87
+ setiastro/saspro/linear_fit.py,sha256=N-eI06to5ufYpszDauyu3L3tvBzIW9VI4JZ4rO6NJGw,20772
88
+ setiastro/saspro/live_stacking.py,sha256=krXpnALyMssxmC5lGh52FJVTRaDUjDCj92kxz7ZYXl4,77142
89
+ setiastro/saspro/log_bus.py,sha256=1H6cTrv138I89BU5K7rhA-QRXPxY0_2C5eegS38Mc-o,178
90
+ setiastro/saspro/logging_config.py,sha256=vRETX9Nw4bYaBDZAbglo1m7V-2rh85QGE8eRS-yoOcA,14868
91
+ setiastro/saspro/luminancerecombine.py,sha256=heZ8sT4_W9vaY3XIz0_B0c4N53R_IiLWxW5SJN2LqQU,10837
92
+ setiastro/saspro/main_helpers.py,sha256=sehI2K7P33ijCutfrL1fe7gyWV3VfQ8Jvim1WmeViKs,6426
93
+ setiastro/saspro/mask_creation.py,sha256=HsL_878H_LI9vrT3rubrxK2v8dHCp6Tc1ULkpn3icsM,38225
94
+ setiastro/saspro/masks_core.py,sha256=2JcQeOFWzCnVxqNYBp4sHeRLn_b5LCpbZaAy6eNH1I8,1852
95
+ setiastro/saspro/mdi_widgets.py,sha256=TkuYOn3xOWfg4yYAhJd4whGELXiiSyOjocnuHRyTN8Y,12238
96
+ setiastro/saspro/memory_utils.py,sha256=uWSI8fa-HUjlvSRnu_zqhL_xBLQuZvj4NfbMrm475sQ,21147
97
+ setiastro/saspro/metadata_patcher.py,sha256=EaDnIvhYmr27ouP92NvDgWz6I1x4iGjCfseq99V7nJA,2285
98
+ setiastro/saspro/mfdeconv.py,sha256=YEdMj6trVzNkJEsEdub2bKIsLqefbKJSRy2JsRs5PgE,152797
99
+ setiastro/saspro/mfdeconv_earlystop.py,sha256=JCY9RV6jMtwcOxUnb9HzJHem5ygYXXiRr2N6VhWNWoQ,2787
100
+ setiastro/saspro/mfdeconvcudnn.py,sha256=6le05PzkuC33S2QHOhfWv8yYQI82aJMmwAVffk6QgIw,127665
101
+ setiastro/saspro/mfdeconvsport.py,sha256=IdPnXKqaiEwZNc4pRdTULSvxb1q50-WeXCoNNUzVm7w,92878
102
+ setiastro/saspro/minorbodycatalog.py,sha256=PaOwy1T_ApEfPyGZFUD4qB1n7jyK6kuw1FjBhP2HCTw,19662
103
+ setiastro/saspro/morphology.py,sha256=HuFoakXDs2EB6L6R2ej3T9wYeUJnPxlJOiuvNMmIBV0,15147
104
+ setiastro/saspro/multiscale_decomp.py,sha256=ay27aW3COEk9NHtyStYW6Nz4zVx4BxvDEelFhogoS5I,47866
105
+ setiastro/saspro/nbtorgb_stars.py,sha256=NKk-YU5BNgpp4U9gw0lEaieqeb8aJ0pd5Ye52_ZGeLM,22866
106
+ setiastro/saspro/numba_utils.py,sha256=LEiTY2uZCX5HKrw5zTslFZ4wuh_7XfiI1YJldaLtcu8,112114
107
+ setiastro/saspro/numba_warmup.py,sha256=6ZbZ2Ss4VrioLnMUcyRQyY2KR1fmRBqzyoUwxuvIyh4,5268
108
+ setiastro/saspro/ops/__init__.py,sha256=-GivNKsFxX46qeVUWnFVmzcCpQffT9RuWHmyUjfqvDQ,268
109
+ setiastro/saspro/ops/command_help_dialog.py,sha256=p4E9r0aMplQTTq7tZLScksAIPxmMWUmmnTQ0O_CY9aE,23061
110
+ setiastro/saspro/ops/command_runner.py,sha256=teyrnOVJcd2IVxIPhh-ud4Q8MrBMxzSNR3QQe_2K-hk,7512
111
+ setiastro/saspro/ops/commands.py,sha256=xHJBn80BGsJ5q7e0xwAMzDyIdJQNe3e_wxWksP6Qc4g,54012
112
+ setiastro/saspro/ops/script_editor.py,sha256=JMUNO-N9V7HNvBmKLLahbkNQYYwgz7m3QuUVpDHbJU8,40694
113
+ setiastro/saspro/ops/scripts.py,sha256=ZelcrmvE12j5b_zUY2b54JENvUa8Th8KPhy7C9lAqtw,49623
114
+ setiastro/saspro/ops/settings.py,sha256=_ExdV8ioit7kG6w7AVEvdBeW17Pndkn6S7kmjM04Du4,26546
115
+ setiastro/saspro/parallel_utils.py,sha256=GoPhypMsp3k8dffv4129CjLU-xDqpu9wnhHI463RR6U,15931
116
+ setiastro/saspro/pedestal.py,sha256=WkwNaY0Qp1XP6KFtb6tnnKMhg71R5WEhVOdwWwJFmJ8,4014
117
+ setiastro/saspro/perfect_palette_picker.py,sha256=ZYpgx79gvvPujBxMIQCkgEubZD8l43aVdr5HkxMe47Y,44614
118
+ setiastro/saspro/pipeline.py,sha256=QO8tttr050dbJkpkShO4g7gUEESAcRhhn7LLp0IwKyw,3774
119
+ setiastro/saspro/pixelmath.py,sha256=Bu9Y8TBTphzirbVdMv-M2QLv_baHN6t9KqXBD66mHJo,70979
120
+ setiastro/saspro/plate_solver.py,sha256=wKZJjNCerN1xxYLsEi5KN5mCdqHa7522s3KjbrAc9rg,92511
121
+ setiastro/saspro/project_io.py,sha256=usCbXxgB6bKj4L_71eTQIIzOzYAWxaNUoY4duB6oC5g,30357
122
+ setiastro/saspro/psf_utils.py,sha256=K3R4BjUzsopLRuLTbPlm8lBw3-x9twNWG4bK-4phDM4,4555
123
+ setiastro/saspro/psf_viewer.py,sha256=0R6ImAHsJl2za5bcsQC7lQ3v2CHyDsRUICOkNmq4JpE,20548
124
+ setiastro/saspro/pyi_rthook_astroquery.py,sha256=Omt8U0gMI3efw3y-GUUJtBYUylwT1OMn0285QW3kRzE,3993
125
+ setiastro/saspro/remove_green.py,sha256=-0uYOnKZYRBrHLaFxXbfHz5JQjfOq9bxWAZuU1hhgVI,11240
126
+ setiastro/saspro/remove_stars.py,sha256=avgTq96zfSZ_ZQfzhQWxaWBUIb8h6FIh3QO_0-RYdi0,61863
127
+ setiastro/saspro/remove_stars_preset.py,sha256=oBsapnsffm4GE09JlHRFc4JOAILkgR45Q9z6Pev-LFM,17466
128
+ setiastro/saspro/resources.py,sha256=F2olwjb2xjGsQKRj22YxdEzctiQ0Kn7vjz9npftAymI,21770
129
+ setiastro/saspro/rgb_combination.py,sha256=Grvc-nrBOysk7v950f_HxqoXUVeDEvAqDCEqKaHx4C0,8552
130
+ setiastro/saspro/rgb_extract.py,sha256=FZRA2qac8LR2u-jNcQP-1xFeiOYVBo06-Q3Xl0KAlZM,624
131
+ setiastro/saspro/rgbalign.py,sha256=viBxO_qXv8AhZMwWON8GurKWL8PAQEjjGkZRXZZpWQ8,29880
132
+ setiastro/saspro/runtime_imports.py,sha256=tgIHH10cdAEbCTOmcs7retQhAww2dEc_3mKrv_m8W9s,206
133
+ setiastro/saspro/runtime_torch.py,sha256=IEVqD8jgn6la8t3R9ngZ2egSGMAC_tr1im3R8BnvXTQ,33497
134
+ setiastro/saspro/save_options.py,sha256=qCbHpjt2TR__tJQuNqzBt4S_Q1ff8QzK-AQ3YluPf6Y,2642
135
+ setiastro/saspro/selective_color.py,sha256=tW3Rz4-V19E65RKlrhaor6ioPkkdQOfvv5aUhQnPX5U,62733
136
+ setiastro/saspro/sfcc.py,sha256=icWz1M_PiAlosLxI1PmncN_gQLp4yPd17KaSLUyOmTI,72573
137
+ setiastro/saspro/shortcuts.py,sha256=fEQoBdyQU4IsrAUW8SVD8R04vcDIhIGkoQmHIYXExoU,121930
138
+ setiastro/saspro/signature_insert.py,sha256=Y03caoNpvQj1bNyWm48gksO1pS1ZfzpMEhO0-WkBzsQ,45562
139
+ setiastro/saspro/stacking_suite.py,sha256=xq4qeJuBWQfmP8cB-AK7ZiMyPwthlAKhTltR7NN56kI,796264
140
+ setiastro/saspro/star_alignment.py,sha256=vikQ0O80FCIRYv8PE3EfYpb7StQ-Zzuy-VxoIFDMMAY,324150
141
+ setiastro/saspro/star_alignment_preset.py,sha256=1QLRRUsVGr3-iX4kKvV9s-NuDRJVnRQat8qdTIs1nao,13164
142
+ setiastro/saspro/star_metrics.py,sha256=LRfBdqjwJJ9iz_paY-CkhPIqt2MxoXARLUy73ZKTA_0,1503
143
+ setiastro/saspro/star_spikes.py,sha256=jLdNps1JywCnY246MJE5Viqda8aA2F1h9uoZ3Wdwgw4,29210
144
+ setiastro/saspro/star_stretch.py,sha256=kOVKyjw-yrQPBbrOzIVfPqVUHhg6dYPN4VFH0cDGpnE,18310
145
+ setiastro/saspro/stat_stretch.py,sha256=7CyP3d5L-3nkJtnWgVjDLgoVPDFdOXkpHC0g78rla9I,20933
146
+ setiastro/saspro/status_log_dock.py,sha256=MRgrkuO75ROgywIXMtgowRs8DeNc-ZWDFKFxRpykltE,2913
147
+ setiastro/saspro/subwindow.py,sha256=Nng5lkaR3x7_ygTVCTMini6DQjFhQit71nFk5VDmqP0,128435
148
+ setiastro/saspro/supernovaasteroidhunter.py,sha256=N4bo-JMmHrobYnvWkbwHe5qL6Bqw2zJZhIRKYK3YFGw,65904
149
+ setiastro/saspro/swap_manager.py,sha256=NYvDNfrZELZNADEei2w4LrFxy-gd5I6_IuvyDHxpeBU,3286
150
+ setiastro/saspro/torch_backend.py,sha256=e8ZNIeSP33NjNRH4yNhrhZRo5k7tNEpJ6FNlOQ-kp8I,2473
151
+ setiastro/saspro/torch_rejection.py,sha256=p5xpslY4iBvqGZdlq-QObOssVx3maAG4CQHQxXETq64,19426
152
+ setiastro/saspro/view_bundle.py,sha256=VbfjNMX4Zt0zpTVlvvWfuP2j_MBbjVdoRVBRd4Pfcew,60300
153
+ setiastro/saspro/wavescale_hdr.py,sha256=TjO2OfV-O1JYVlD1VFmCLfAciifoK_6Q18vZ-9xR7rA,26239
154
+ setiastro/saspro/wavescale_hdr_preset.py,sha256=USl_cqM-2p-6nEpbdFFUZNQNkgkXaIPZDUFbqHyZ44c,3606
155
+ setiastro/saspro/wavescalede.py,sha256=_JamLfZaY6KaGL76Vehjadw5IaVacw9SEePH7LoMsZU,28477
156
+ setiastro/saspro/wavescalede_preset.py,sha256=r_t57_3hdOQXTnfI1AXnGvzvM-rZOVHE8P5cjV2PRmM,9392
157
+ setiastro/saspro/wcs_update.py,sha256=XwNmtcj-ThmgTwN_RyXGS4vRUW9bsAOshP9YQeTo76E,13288
158
+ setiastro/saspro/whitebalance.py,sha256=9jwH5HJ0yxCTczxLT_OUZ4-qzUQ2ChhAW5CHrS3Wv1I,19024
159
+ setiastro/saspro/widgets/__init__.py,sha256=InMH1TPPzj1kHeHv7gQRwQcUlHvohcUYcfFti15hO1A,1287
160
+ setiastro/saspro/widgets/common_utilities.py,sha256=e18_ST1aYmdhCLhwb6GmCAbbLBBzvI2xyLYjIDegkcs,9954
161
+ setiastro/saspro/widgets/graphics_views.py,sha256=VfYokl0TYP-dLnwdcsmy61X5ETlNH1DWlGTMm2GlI7Q,4208
162
+ setiastro/saspro/widgets/image_utils.py,sha256=3cUy4qwV0C86EzOaUAJvLemh7dkgiuP6Nbjn68hYbPc,15457
163
+ setiastro/saspro/widgets/preview_dialogs.py,sha256=W0gqM5mca3Ve19k0_GK5ybe6O_YY85Y9aHHc-yxHQ5g,10598
164
+ setiastro/saspro/widgets/spinboxes.py,sha256=pnwuy1tYOCSxcX1tD0a4CyBle6mOuRrv6wgev47pmUk,9970
165
+ setiastro/saspro/widgets/themed_buttons.py,sha256=m6f_AYCx-tUmKf3U1CBuBbUsXOLW3cS3_oZUd4plVuU,445
166
+ setiastro/saspro/widgets/wavelet_utils.py,sha256=mlPO1lCVkxJsX1ESOX6QunjH8yM0-s4pt4X9TOe9haE,10327
167
+ setiastro/saspro/window_shelf.py,sha256=SAe243tCjb1LuNSFupimHAF-TbKtrwQ88z10zrVtk1I,7435
168
+ setiastro/saspro/xisf.py,sha256=Rh1XTKjycEZ2WR6Z7D0uQGVQFwjCeLSFKSJq5JOhCxI,49702
169
+ setiastrosuitepro-1.6.0.dist-info/entry_points.txt,sha256=vJfnZaV6Uj3laETakqT8-D-aJZI_nYIicrhSoL0uuko,227
170
+ setiastrosuitepro-1.6.0.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
171
+ setiastrosuitepro-1.6.0.dist-info/licenses/license.txt,sha256=KCwYZ9VpVwmzjelDq1BzzWqpBvt9nbbapa-woz47hfQ,123930
172
+ setiastrosuitepro-1.6.0.dist-info/METADATA,sha256=dF22KBcva7wKIOEjYFiK3bSlCrO8OW6xf4OEvGJZMD4,8848
173
+ setiastrosuitepro-1.6.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
174
+ setiastrosuitepro-1.6.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.2.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,6 @@
1
+ [console_scripts]
2
+ saspro-export-requirements=ops.export_requirements:main
3
+ saspro-prime-matplotlib-cache=ops.prime_matplotlib_cache:main
4
+ saspro-write-build-info=ops.write_build_info:main
5
+ setiastrosuitepro=setiastro.saspro:main
6
+