use find_packages rather than hardcode (actually includes 'google' too, as it happens)

This commit is contained in:
Paul Makepeace 2011-05-01 17:39:41 +00:00
parent 1fa9679b23
commit d26edd815f
1 changed files with 2 additions and 1 deletions

View File

@ -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 = [