diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-13 08:29:14 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-13 08:29:14 +0000 |
commit | daf38f394fabdc9cecc8f2aadb3777e546679430 (patch) | |
tree | 3472c58fcfbf29af4ddcf552e73bdbf2d61c2060 /numpy/compat/setup.py | |
parent | 7b481cbd0d73630359c4739b0bb2c13a62509e66 (diff) | |
download | numpy-daf38f394fabdc9cecc8f2aadb3777e546679430.tar.gz |
ENH: move inspect copy into newly created compat module.
Diffstat (limited to 'numpy/compat/setup.py')
-rw-r--r-- | numpy/compat/setup.py | 10 |
1 files changed, 10 insertions, 0 deletions
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) |