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/matrx/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/matrx/setup.py')
-rw-r--r-- | numpy/matrx/setup.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/numpy/matrx/setup.py b/numpy/matrx/setup.py deleted file mode 100644 index ca288b96e..000000000 --- a/numpy/matrx/setup.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env python -import os - -def configuration(parent_package='', top_path=None): - from numpy.distutils.misc_util import Configuration - config = Configuration('matrx', 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) |