From fe002b2916a5928463f7c46c5c4875114228bf7f Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Wed, 16 Sep 2009 07:12:46 +0000 Subject: Move matrix class into its own module. --- numpy/matrx/setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 numpy/matrx/setup.py (limited to 'numpy/matrx/setup.py') 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) -- cgit v1.2.1