├── .github └── workflows │ ├── publish.yml │ └── pytest.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _static │ ├── angle_schema.png │ └── logo.jpg ├── conf.py ├── contribution.rst ├── convenience.rst ├── index.rst ├── installation.rst ├── rtd_requirement.txt └── usage.rst ├── pypher ├── __init__.py ├── addpixscl.py ├── fitsutils.py ├── parser.py ├── pypher.py └── tests │ ├── .coveragerc │ ├── __init__.py │ ├── conftest.py │ └── test_pypher.py ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/angle_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/_static/angle_schema.png -------------------------------------------------------------------------------- /docs/_static/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/_static/logo.jpg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/contribution.rst -------------------------------------------------------------------------------- /docs/convenience.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/convenience.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/rtd_requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/rtd_requirement.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pypher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/__init__.py -------------------------------------------------------------------------------- /pypher/addpixscl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/addpixscl.py -------------------------------------------------------------------------------- /pypher/fitsutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/fitsutils.py -------------------------------------------------------------------------------- /pypher/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/parser.py -------------------------------------------------------------------------------- /pypher/pypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/pypher.py -------------------------------------------------------------------------------- /pypher/tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/tests/.coveragerc -------------------------------------------------------------------------------- /pypher/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypher/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/tests/conftest.py -------------------------------------------------------------------------------- /pypher/tests/test_pypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/pypher/tests/test_pypher.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboucaud/pypher/HEAD/setup.py --------------------------------------------------------------------------------