├── .gitignore ├── .gitmodules ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── TEMPLATE_CHANGES.md ├── ah_bootstrap.py ├── astromatic_wrapper ├── __init__.py ├── _astropy_init.py ├── api.py ├── conftest.py ├── data │ └── README.rst ├── extern │ └── __init__.py ├── tests │ ├── __init__.py │ ├── coveragerc │ ├── setup_package.py │ └── test_api.py └── utils │ ├── __init__.py │ ├── ldac.py │ ├── pipeline.py │ └── tests │ ├── __init__.py │ ├── data │ ├── multiext.ldac.fits │ └── test.ldac.fits │ ├── setup_package.py │ ├── test_ldac.py │ └── test_pipeline.py ├── cextern └── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── install.rst ├── make.bat ├── modules.rst ├── overview.rst ├── pipelines.rst ├── quick_start.rst ├── rtd-pip-requirements └── working_with.rst ├── ez_setup.py ├── licenses ├── LICENSE.rst └── README.rst ├── pip-requirements ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/README.rst -------------------------------------------------------------------------------- /TEMPLATE_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/TEMPLATE_CHANGES.md -------------------------------------------------------------------------------- /ah_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/ah_bootstrap.py -------------------------------------------------------------------------------- /astromatic_wrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/__init__.py -------------------------------------------------------------------------------- /astromatic_wrapper/_astropy_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/_astropy_init.py -------------------------------------------------------------------------------- /astromatic_wrapper/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/api.py -------------------------------------------------------------------------------- /astromatic_wrapper/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/conftest.py -------------------------------------------------------------------------------- /astromatic_wrapper/data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/data/README.rst -------------------------------------------------------------------------------- /astromatic_wrapper/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/extern/__init__.py -------------------------------------------------------------------------------- /astromatic_wrapper/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/tests/__init__.py -------------------------------------------------------------------------------- /astromatic_wrapper/tests/coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/tests/coveragerc -------------------------------------------------------------------------------- /astromatic_wrapper/tests/setup_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/tests/setup_package.py -------------------------------------------------------------------------------- /astromatic_wrapper/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/tests/test_api.py -------------------------------------------------------------------------------- /astromatic_wrapper/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/__init__.py -------------------------------------------------------------------------------- /astromatic_wrapper/utils/ldac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/ldac.py -------------------------------------------------------------------------------- /astromatic_wrapper/utils/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/pipeline.py -------------------------------------------------------------------------------- /astromatic_wrapper/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astromatic_wrapper/utils/tests/data/multiext.ldac.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/tests/data/multiext.ldac.fits -------------------------------------------------------------------------------- /astromatic_wrapper/utils/tests/data/test.ldac.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/tests/data/test.ldac.fits -------------------------------------------------------------------------------- /astromatic_wrapper/utils/tests/setup_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/tests/setup_package.py -------------------------------------------------------------------------------- /astromatic_wrapper/utils/tests/test_ldac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/tests/test_ldac.py -------------------------------------------------------------------------------- /astromatic_wrapper/utils/tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/astromatic_wrapper/utils/tests/test_pipeline.py -------------------------------------------------------------------------------- /cextern/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/cextern/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/pipelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/pipelines.rst -------------------------------------------------------------------------------- /docs/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/quick_start.rst -------------------------------------------------------------------------------- /docs/rtd-pip-requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/rtd-pip-requirements -------------------------------------------------------------------------------- /docs/working_with.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/docs/working_with.rst -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/ez_setup.py -------------------------------------------------------------------------------- /licenses/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/licenses/LICENSE.rst -------------------------------------------------------------------------------- /licenses/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/licenses/README.rst -------------------------------------------------------------------------------- /pip-requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/pip-requirements -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred3m/astromatic_wrapper/HEAD/setup.py --------------------------------------------------------------------------------