Make pokedex work with SQLAlchemy 0.7. Warning: ugly hack!
[zzz-pokedex.git] / setup.py
index 62da748..2f5887e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,16 +4,19 @@ setup(
     version = '0.1',
     zip_safe = False,
     packages = find_packages(),
-    package_data = { '': ['pokedex/data'] },
+    package_data = {
+        'pokedex': ['data/csv/*.csv']
+    },
     install_requires=[
-        'docutils',
-        'SQLAlchemy>=0.5.1',
-        'whoosh>=0.3.0b24',
+        'SQLAlchemy>=0.7.0b3',
+        'whoosh>=1.1.0',
+        'markdown',
+        'construct',
     ],
 
     entry_points = {
         'console_scripts': [
-            'pokedex = pokedex:main',
+            'pokedex = pokedex.main:main',
         ],
     },
 )