From 4aa1bfb0ba172944db9fc8e60059ffa97016330a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20B=C3=B8=20Fl=C3=B8ystad?= Date: Sat, 6 Jul 2013 22:22:15 +0200 Subject: [PATCH] unwrap: Delete old setup script. --- unwrap2D/setup.py | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 unwrap2D/setup.py diff --git a/unwrap2D/setup.py b/unwrap2D/setup.py deleted file mode 100644 index 848d43b5..00000000 --- a/unwrap2D/setup.py +++ /dev/null @@ -1,32 +0,0 @@ -from distutils.core import setup -from distutils.extension import Extension -from Cython.Distutils import build_ext -#from Cython.Build import cythonize -import numpy as np - -ext_modules = [ - Extension('unwrap2D', - ['unwrap2D.pyx', - 'Miguel_2D_unwrapper_with_mask_and_wrap_around_option.c', - ], - include_dirs = [np.get_include(),], - ), - Extension('unwrap3D', - ['unwrap3D.pyx', - 'Hussein_3D_unwrapper_with_mask_and_wrap_around_option.c', - ], - include_dirs = [np.get_include(),], - ), - ] - -import numpy as np - -setup( - name = 'unwrap', - #ext_modules = cythonize(['cytransient.pyx',], - # include_path = [np.get_include(),], - # ), - cmdclass = {'build_ext': build_ext}, - ext_modules = ext_modules, - py_modules = ['unwrap',] - )