Fixed some missed markdown identifier conversions.
[zzz-pokedex.git] / setup.py
index d6557d3..3bc7028 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,13 +2,21 @@ 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'],
+    package_data = {
+        'pokedex': ['data/csv/*.csv']
+    },
+    install_requires=[
+        'SQLAlchemy>=0.6.6',
+        'whoosh>=1.1.0',
+        'markdown',
+        'construct',
+    ],
 
     entry_points = {
         'console_scripts': [
-            'pokedex = pokedex:main',
+            'pokedex = pokedex.main:main',
         ],
     },
 )