summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-04-02 13:23:30 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2011-04-02 19:59:58 +0200
commitb8101c94e26ee21d3bdc49270efe14924ca08078 (patch)
treeb70744dc62e6cc34412033d3ff04a16d6a61df58
parent250245d49a62d9f26e755f1ba7b213f8cab2008c (diff)
downloadnumpy-b8101c94e26ee21d3bdc49270efe14924ca08078.tar.gz
BLD: do not install swig/cython/pyrex files. See #1791.
This is not a complete fix yet. Should be handled correctly in binary installers.
-rw-r--r--MANIFEST.in3
-rwxr-xr-xsetup.py6
2 files changed, 3 insertions, 6 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 6f2e8025f..e3c331628 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -21,3 +21,6 @@ include doc/Makefile doc/postprocess.py
recursive-include doc/release *
recursive-include doc/source *
recursive-include doc/sphinxext *
+recursive-include doc/cython *
+recursive-include doc/pyrex *
+recursive-include doc/swig *
diff --git a/setup.py b/setup.py
index f0cd6516f..4f35d9c6c 100755
--- a/setup.py
+++ b/setup.py
@@ -141,12 +141,6 @@ def configuration(parent_package='',top_path=None):
config.add_subpackage('numpy')
- # we want these files also in binaries/installed files, so it belongs here
- # instead of in Manifest.in
- config.add_data_files(('doc/cython/'),
- ('doc/pyrex/'),
- ('doc/swig/'))
-
config.get_version('numpy/version.py') # sets config.version
return config