X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/4fe48baffb5156027c6d186308998412554a6906..aaa7f3a9432e2a0d72732133d657e9c85bdc79b4:/setup.py diff --git a/setup.py b/setup.py index 70e0a95..7527672 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,17 @@ 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.1.24'], + package_data = { + 'pokedex': ['data/csv/*.csv'] + }, + install_requires=[ + 'SQLAlchemy>=0.6.6', + 'whoosh>=1.1.0', + 'markdown', + 'construct', + ], entry_points = { 'console_scripts': [