-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfits_plotter.py
More file actions
26 lines (19 loc) · 837 Bytes
/
fits_plotter.py
File metadata and controls
26 lines (19 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
fits_plotter.py
===============
Re-exporta FITSPlotter desde myastroutilities.plotting.fits_plotter.
El código canónico vive en el paquete myastroutilities. Instálalo con:
pip install -e /home/jennifer/myastroutilities
o bien:
pip install git+https://github.com/jennifergc/myastroutilities.git
Uso en notebooks y scripts:
from myastroutilities.plotting.fits_plotter import FITSPlotter
# o, usando este archivo de compatibilidad:
from fits_plotter import FITSPlotter
"""
from myastroutilities.plotting.fits_plotter import FITSPlotter # noqa: F401
if __name__ == "__main__":
# Permite ejecutar como CLI directamente
from myastroutilities.plotting.fits_plotter import __name__ as _ # noqa: F401
import runpy
runpy.run_module("myastroutilities.plotting.fits_plotter", run_name="__main__")