From c74ea7347fb10e9d8f62944eb92eaaf701755508 Mon Sep 17 00:00:00 2001 From: Eevee Date: Sun, 13 Sep 2009 20:11:05 -0700 Subject: [PATCH] Fixed up setup.py. Most notably, 'install' now works. The package_data line was still wrong. Also turned off zip_safe, since it's really not; pokedex setup tries to write to the install directory! Finally, bumped the whoosh version; the beta I required has been taken off pypi, and the bugs in b6 seem to be gone now. --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0021d98..cf9f278 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,10 @@ from setuptools import setup, find_packages setup( name = 'Pokedex', version = '0.1', + zip_safe = False, packages = find_packages(), - package_data = { '': ['data'] }, - install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'], + package_data = { '': ['pokedex/data'] }, + install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b24'], entry_points = { 'console_scripts': [ -- 2.7.4