diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-28 06:44:06 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-28 06:44:06 +0000 |
commit | ef8690c161d3314358d22443cb5ffe3fa7f7f5af (patch) | |
tree | f4b9c64183790e17bcc17ae924c34d3e74bb47ad /MANIFEST.in | |
parent | 69bf86201ff2d85d9a84470ceb87797ec516f4df (diff) | |
download | numpy-ef8690c161d3314358d22443cb5ffe3fa7f7f5af.tar.gz |
Do not add doc sources through add_data_dir: it will put the docs alongside numpy, as a separate package, which is not what we want. Use the manifest instead, since that's the only way I know of to include something in sdist-generated tarballs.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 581a1d939..176446485 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,3 +11,9 @@ include setupegg.py recursive-include numpy/core/code_generators *.py include numpy/core/include/numpy/numpyconfig.h.in recursive-include numpy SConstruct +# Add documentation: we don't use add_data_dir since we do not want to include +# this at installation, only for sdist-generated tarballs +include doc/Makefile doc/postprocess.py +recursive-include doc/release * +recursive-include doc/source * +recursive-include doc/sphinxext * |