summaryrefslogtreecommitdiff
path: root/MANIFEST.in
diff options
context:
space:
mode:
Diffstat (limited to 'MANIFEST.in')
-rw-r--r--MANIFEST.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index e15e0e58a..647e2f704 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -11,15 +11,18 @@ include site.cfg.example
include numpy/random/mtrand/generate_mtrand_c.py
recursive-include numpy/random/mtrand *.pyx *.pxd
# Add build support that should go in sdist, but not go in bdist/be installed
+# Note that sub-directories that don't have __init__ are apparently not
+# included by 'recursive-include', so list those separately
+recursive-include numpy *
recursive-include numpy/_build_utils *
-recursive-include numpy/linalg/lapack_lite *.c *.h
+recursive-include numpy/linalg/lapack_lite *
include runtests.py
include tox.ini pytest.ini .coveragerc
recursive-include tools *
# Add sdist files whose use depends on local configuration.
include numpy/core/src/common/cblasfuncs.c
include numpy/core/src/common/python_xerbla.c
-# Adding scons build related files not found by distutils
+# Adding build related files not found by distutils
recursive-include numpy/core/code_generators *.py *.txt
recursive-include numpy/core *.in *.h
# Add documentation and benchmarks: we don't use add_data_dir since we do not