[Scipy-svn] r4092 - trunk/scipy/io/arff
scipy-svn@scip...
scipy-svn@scip...
Mon Apr 7 14:09:33 CDT 2008
Author: cdavid
Date: 2008-04-07 14:09:30 -0500 (Mon, 07 Apr 2008)
New Revision: 4092
Added:
trunk/scipy/io/arff/setup.py
Log:
Add setup file for arff reader submodule.
Added: trunk/scipy/io/arff/setup.py
===================================================================
--- trunk/scipy/io/arff/setup.py 2008-04-07 18:23:10 UTC (rev 4091)
+++ trunk/scipy/io/arff/setup.py 2008-04-07 19:09:30 UTC (rev 4092)
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+
+def configuration(parent_package='io',top_path=None):
+ from numpy.distutils.misc_util import Configuration
+ config = Configuration('arff', parent_package, top_path)
+ #config.add_data_dir('tests')
+ return config
+
+if __name__ == '__main__':
+ from numpy.distutils.core import setup
+ setup(**configuration(top_path='').todict())
Property changes on: trunk/scipy/io/arff/setup.py
___________________________________________________________________
Name: svn:executable
+ *
More information about the Scipy-svn
mailing list