├── .circleci └── config.yml ├── .coveragerc ├── .gitignore ├── .readthedocs.yml ├── CHANGES.rst ├── CONTRIBUTING.md ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── ah_bootstrap.py ├── astropy_helpers ├── __init__.py ├── commands │ ├── __init__.py │ ├── _dummy.py │ ├── build_ext.py │ ├── build_sphinx.py │ ├── src │ │ └── compiler.c │ └── test.py ├── conftest.py ├── distutils_helpers.py ├── git_helpers.py ├── openmp_helpers.py ├── setup_helpers.py ├── sphinx │ ├── __init__.py │ └── conf.py ├── tests │ ├── __init__.py │ ├── test_ah_bootstrap.py │ ├── test_git_helpers.py │ ├── test_openmp_helpers.py │ ├── test_setup_helpers.py │ └── test_utils.py ├── utils.py └── version_helpers.py ├── docs ├── Makefile ├── advanced.rst ├── api.rst ├── basic.rst ├── conf.py ├── developers.rst ├── index.rst ├── known_issues.rst ├── make.bat ├── updating.rst └── using.rst ├── licenses └── LICENSE_ASTROSCRAPPY.rst ├── pyproject.toml ├── setup.cfg └── setup.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/README.rst -------------------------------------------------------------------------------- /ah_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/ah_bootstrap.py -------------------------------------------------------------------------------- /astropy_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/__init__.py -------------------------------------------------------------------------------- /astropy_helpers/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astropy_helpers/commands/_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/commands/_dummy.py -------------------------------------------------------------------------------- /astropy_helpers/commands/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/commands/build_ext.py -------------------------------------------------------------------------------- /astropy_helpers/commands/build_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/commands/build_sphinx.py -------------------------------------------------------------------------------- /astropy_helpers/commands/src/compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/commands/src/compiler.c -------------------------------------------------------------------------------- /astropy_helpers/commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/commands/test.py -------------------------------------------------------------------------------- /astropy_helpers/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/conftest.py -------------------------------------------------------------------------------- /astropy_helpers/distutils_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/distutils_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/git_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/git_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/openmp_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/openmp_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/setup_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/setup_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/sphinx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astropy_helpers/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/sphinx/conf.py -------------------------------------------------------------------------------- /astropy_helpers/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/tests/__init__.py -------------------------------------------------------------------------------- /astropy_helpers/tests/test_ah_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/tests/test_ah_bootstrap.py -------------------------------------------------------------------------------- /astropy_helpers/tests/test_git_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/tests/test_git_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/tests/test_openmp_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/tests/test_openmp_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/tests/test_setup_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/tests/test_setup_helpers.py -------------------------------------------------------------------------------- /astropy_helpers/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/tests/test_utils.py -------------------------------------------------------------------------------- /astropy_helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/utils.py -------------------------------------------------------------------------------- /astropy_helpers/version_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/astropy_helpers/version_helpers.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/basic.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/developers.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/known_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/known_issues.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/updating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/updating.rst -------------------------------------------------------------------------------- /docs/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/docs/using.rst -------------------------------------------------------------------------------- /licenses/LICENSE_ASTROSCRAPPY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/licenses/LICENSE_ASTROSCRAPPY.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astropy-helpers/HEAD/setup.py --------------------------------------------------------------------------------