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/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 numpy/compat/setup.py (limited to 'numpy/compat/setup.py') diff --git a/numpy/compat/setup.py b/numpy/compat/setup.py new file mode 100644 index 000000000..4e0781085 --- /dev/null +++ b/numpy/compat/setup.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +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