https://github.com/astropy/astropy
Raw File
Tip revision: fe511b2f4f4ad0b4e6f259105e4042dc22707246 authored by Thomas Robitaille on 28 March 2023, 10:40:45 UTC
Merge pull request #14592 from astrofrog/v5.0.6-changelog
Tip revision: fe511b2
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