diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-12 23:13:30 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-12 23:13:30 +0000 |
commit | 6408d0d38af09323b9192d0185f8435060e4e93a (patch) | |
tree | 838146fbd56c9eab52d04c5ee374f631b44bb982 /numpy/oldnumeric/setup.py | |
parent | fbf0b479604c22e60215bb28cdedabfb821b9d75 (diff) | |
download | numpy-6408d0d38af09323b9192d0185f8435060e4e93a.tar.gz |
Fix-up oldnumeric module
Diffstat (limited to 'numpy/oldnumeric/setup.py')
-rw-r--r-- | numpy/oldnumeric/setup.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/numpy/oldnumeric/setup.py b/numpy/oldnumeric/setup.py new file mode 100644 index 000000000..9526e51b4 --- /dev/null +++ b/numpy/oldnumeric/setup.py @@ -0,0 +1,8 @@ + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + return Configuration('oldnumeric',parent_package,top_path) + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(**configuration(top_path='').todict()) |