diff -r f328ec853e18 -r 6b2e1e8d3a22 setup.py --- a/setup.py Fri Oct 15 17:00:09 2010 +0200 +++ b/setup.py Fri Oct 15 19:48:58 2010 +0200 @@ -61,7 +61,7 @@ data_files = getattr(__pkginfo__, 'data_files', None) subpackage_of = getattr(__pkginfo__, 'subpackage_of', None) ext_modules = getattr(__pkginfo__, 'ext_modules', None) - +package_data = getattr(__pkginfo__, 'package_data', {}) BASE_BLACKLIST = ('CVS', 'debian', 'dist', 'build', '__buildlog') IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc') @@ -194,6 +194,7 @@ if USE_SETUPTOOLS: kwargs['install_requires'] = install_requires kwargs['packages'] = packages + kwargs['package_data'] = package_data return setup(name=distname, version=version, license=license, url=web, description=description, long_description=long_description, author=author, author_email=author_email,