From d26edd815f8dabb91aa25a2a9400fe5dc0296439 Mon Sep 17 00:00:00 2001 From: Paul Makepeace Date: Sun, 1 May 2011 17:39:41 +0000 Subject: [PATCH] use find_packages rather than hardcode (actually includes 'google' too, as it happens) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2343d7e..3f6d4c3 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ import os from setuptools import setup +from setuptools import find_packages def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() @@ -30,7 +31,7 @@ setup(name='refine-client', author='Paul Makepeace', author_email='paulm@paulm.com', url='https://github.com/PaulMakepeace/refine-client-py', - packages=['google.refine'], + packages=find_packages(exclude=['tests']), install_requires=['urllib2_file'], platforms=['Any'], classifiers = [