X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/20ff6164bea497470341821a401e8d8e4d981742..30b3fc48652883d88da8e6bab3b37200e8dd2460:/setup.py diff --git a/setup.py b/setup.py index 62da748..3bc7028 100644 --- 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.6.6', + 'whoosh>=1.1.0', + 'markdown', + 'construct', ], entry_points = { 'console_scripts': [ - 'pokedex = pokedex:main', + 'pokedex = pokedex.main:main', ], }, )