From 4fbb548241346933fdc72898ff115b0182367c9e Mon Sep 17 00:00:00 2001 From: Wes McKinney Date: Tue, 17 May 2011 18:32:55 -0400 Subject: [PATCH] added sparse extension to setup --- pandas/lib/setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pandas/lib/setup.py b/pandas/lib/setup.py index e1ac8b02985d8..854ccc8d0f28f 100644 --- a/pandas/lib/setup.py +++ b/pandas/lib/setup.py @@ -24,4 +24,9 @@ def configuration(parent_package='', top_path=None): sources=['src/tseries.c'], include_dirs=[numpy.get_include()]) + + config.add_extension('sparse', + sources=['src/sparse.c'], + include_dirs=[numpy.get_include()]) + return config