https://github.com/astropy/astropy
Raw File
Tip revision: d30fbc82d028332e5cebabeebeffec7429ac50dc authored by Thomas Robitaille on 20 October 2022, 22:11:16 UTC
Update changelog for v5.0.5
Tip revision: d30fbc8
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