https://github.com/astropy/astropy
Raw File
Tip revision: 830edd1d5fe70ede23ae2aa6e904dd4ae38f6b2b authored by Thomas Robitaille on 07 September 2023, 09:33:12 UTC
Merge pull request #15285 from astrofrog/v5.0.8-changelog
Tip revision: 830edd1
MANIFEST.in
include .astropy-root
include LICENSE.rst
include README.rst
include CHANGES.rst
include pip-requirements*
include CITATION
include astropy/CITATION
include pyproject.toml

include setup.cfg
recursive-include astropy *.pyx *.c *.h *.map *.templ

include astropy/astropy.cfg

# We have to explicitly include the following modules, otherwise only the
# Python 2 versions are included when making a source distribution in Python
# 2, and similarly for Python 3:
include astropy/extern/configobj/*.py
recursive-include astropy/utils/compat *.py

recursive-include docs *
recursive-include examples *
recursive-include licenses *
recursive-include cextern *
recursive-include scripts *
recursive-include static *

# This subpckage is only used in development checkouts and should not be
# included in built tarballs
prune astropy/_dev

prune docs/_build
prune build

global-exclude *.pyc *.o
back to top