From 43b84bc31efa770b9bb6fcd650643db50266917d Mon Sep 17 00:00:00 2001 From: Justin Berka Date: Sat, 6 Aug 2011 00:57:54 -0700 Subject: [PATCH] BUILD: Fixed issue #80, xls/csv file copying --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb16e6a785c53..670f7d2d632c5 100755 --- a/setup.py +++ b/setup.py @@ -251,7 +251,9 @@ def srcpath(name=None, suffix='.pyx', subdir='src'): 'pandas.util'], package_data={'pandas' : ['tests/*.py'], 'pandas.io' : ['tests/*.py', - 'tests/*.h5'], + 'tests/*.h5', + 'tests/*.csv', + 'tests/*.xls'], 'pandas.stats' : ['tests/*.py']}, ext_modules=extensions, maintainer_email=MAINTAINER_EMAIL,