From: Eevee Date: Thu, 3 Sep 2009 06:42:46 +0000 (-0700) Subject: setup.py needs a list for package_data, not a string X-Git-Tag: veekun-promotions/2010050901~182 X-Git-Url: http://git.veekun.com/zzz-pokedex.git/commitdiff_plain/c87650256bd855796baf4df0d425188421bf87dc setup.py needs a list for package_data, not a string --- diff --git a/setup.py b/setup.py index a5c8471..0021d98 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name = 'Pokedex', version = '0.1', packages = find_packages(), - package_data = { '': 'data' }, + package_data = { '': ['data'] }, install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'], entry_points = {