[Scipy-svn] r4566 - branches/Interpolate1D

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Jul 28 16:55:36 EDT 2008


Author: fcady
Date: 2008-07-28 15:55:35 -0500 (Mon, 28 Jul 2008)
New Revision: 4566

Removed:
   branches/Interpolate1D/setup.py
Log:
testing adding and deleting a file

Deleted: branches/Interpolate1D/setup.py
===================================================================
--- branches/Interpolate1D/setup.py	2008-07-28 20:48:16 UTC (rev 4565)
+++ branches/Interpolate1D/setup.py	2008-07-28 20:55:35 UTC (rev 4566)
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-
-import os
-from os.path import join
-
-def configuration(parent_package='',top_path=None):
-    from numpy.distutils.misc_util import Configuration
-
-    config = Configuration('', parent_package, top_path)
-
-
-    # C++ extension for several basic interpolation types
-    config.add_extension('_interpolate',
-                         ['_interpolate.cpp'],
-                         include_dirs = ['.'],
-                         depends = ['interpolate.h'])
-
-    # used by dfitpack extension
-    config.add_library('fitpack',
-                       sources=[join('fitpack', '*.f')],
-                      )
-
-    # Fortran routines (collectively "FITPACK" for spline interpolation)
-    config.add_extension('dfitpack',
-                         sources=['fitpack.pyf'],
-                         libraries=['fitpack'],
-                        )
-                        
-    # FIXME : add documentation files
-    # config.add_data_dir(
-
-    return config
-
-if __name__ == '__main__':
-    from numpy.distutils.core import setup
-    setup(**configuration().todict())
\ No newline at end of file




More information about the Scipy-svn mailing list