summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2006-03-30 17:56:48 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2006-03-30 17:56:48 +0000
commit9953985293fb344fc904ab3f4945cf5688a8b7fd (patch)
treed80c2b698c1d166c100451c9b3203c4826b4ced4 /setup.py
parent8869df5b1cba1ffeda6d772eee1a7507fe18bdef (diff)
downloadnumpy-9953985293fb344fc904ab3f4945cf5688a8b7fd.tar.gz
Included numpy .txt files to installation.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 35a915b53..d0e57db15 100755
--- a/setup.py
+++ b/setup.py
@@ -61,11 +61,15 @@ def setup_package():
quiet=True)
config.add_subpackage('numpy')
+
from numpy.version import version
config.name = 'numpy'
config.dict_append(version=version)
#print config.name,'version',config.version
+ config.add_data_files(('numpy',['*.txt','COMPATIBILITY',
+ 'scipy_compatibility']))
+
setup( **config.todict() )
finally:
del sys.path[0]