diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:12:46 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:12:46 +0000 |
commit | fe002b2916a5928463f7c46c5c4875114228bf7f (patch) | |
tree | 1f56e956eae72299b91a84b2cf6874f7ec73d4fa /numpy/matrx/setup.py | |
parent | ec7f9dcddd216019bcf15d162926c4df6355860e (diff) | |
download | numpy-fe002b2916a5928463f7c46c5c4875114228bf7f.tar.gz |
Move matrix class into its own module.
Diffstat (limited to 'numpy/matrx/setup.py')
-rw-r--r-- | numpy/matrx/setup.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/numpy/matrx/setup.py b/numpy/matrx/setup.py new file mode 100644 index 000000000..ca288b96e --- /dev/null +++ b/numpy/matrx/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('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) |