From daf38f394fabdc9cecc8f2aadb3777e546679430 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Tue, 13 Oct 2009 08:29:14 +0000 Subject: ENH: move inspect copy into newly created compat module. --- numpy/compat/setupscons.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 numpy/compat/setupscons.py (limited to 'numpy/compat/setupscons.py') diff --git a/numpy/compat/setupscons.py b/numpy/compat/setupscons.py new file mode 100644 index 000000000..e518245b2 --- /dev/null +++ b/numpy/compat/setupscons.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +import os.path + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration('compat',parent_package,top_path) + return config + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(configuration=configuration) -- cgit v1.2.1