diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-18 09:59:24 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-18 09:59:24 +0000 |
commit | 599b0f1e83494c56d01ac24d7605bc3e8da0cd6e (patch) | |
tree | 02c396f2047e71761d9ef11413cdcde376cbe5c8 /numpy/matrixlib/setup.py | |
parent | 957cd7931740bce0ed9ffb12b47afde6c089dadf (diff) | |
download | numpy-599b0f1e83494c56d01ac24d7605bc3e8da0cd6e.tar.gz |
Rename matrx to matrixlib.
I forgot to commit the name change suggested by Stefan. You need to
clean build/install directory when updating to this version.
Diffstat (limited to 'numpy/matrixlib/setup.py')
-rw-r--r-- | numpy/matrixlib/setup.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/numpy/matrixlib/setup.py b/numpy/matrixlib/setup.py new file mode 100644 index 000000000..85b090094 --- /dev/null +++ b/numpy/matrixlib/setup.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python +import os + +def configuration(parent_package='', top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration('matrixlib', parent_package, top_path) + config.add_data_dir('tests') + return config + +if __name__ == "__main__": + from numpy.distutils.core import setup + config = configuration(top_path='').todict() + setup(**config) |