├── README ├── astrowidgets └── examples │ └── README └── .gitignore /README: -------------------------------------------------------------------------------- 1 | astrowidgets: Astronomy widgets for Jupyter Lab or Notebook 2 | -------------------------------------------------------------------------------- /astrowidgets/examples/README: -------------------------------------------------------------------------------- 1 | This is a folder to store example Jupyter notebooks. 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled files 2 | *.py[cod] 3 | *.a 4 | *.o 5 | *.so 6 | __pycache__ 7 | 8 | # Ignore .c files by default to avoid including generated code. If you want to 9 | # add a non-generated .c extension, use `git add -f filename.c`. 10 | *.c 11 | 12 | # Other generated files 13 | */version.py 14 | */cython_version.py 15 | htmlcov 16 | .coverage 17 | MANIFEST 18 | .ipynb_checkpoints 19 | 20 | # Sphinx 21 | docs/api 22 | docs/_build 23 | 24 | # Eclipse editor project files 25 | .project 26 | .pydevproject 27 | .settings 28 | 29 | # Pycharm editor project files 30 | .idea 31 | 32 | # Packages/installer info 33 | *.egg* 34 | *.egg-info 35 | dist 36 | build 37 | eggs 38 | parts 39 | bin 40 | var 41 | sdist 42 | develop-eggs 43 | .installed.cfg 44 | distribute-*.tar.gz 45 | 46 | # Other 47 | .cache 48 | .tox 49 | .*.sw[op] 50 | *~ 51 | 52 | # Mac OSX 53 | .DS_Store 54 | --------------------------------------------------------------------------------