X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/65e72f1bd2b2ffaefd67b326bf97112c7d92f638..refs/heads/media-reorganization:/setup.py diff --git a/setup.py b/setup.py index ee8a33c..3bc7028 100644 --- a/setup.py +++ b/setup.py @@ -8,14 +8,15 @@ setup( '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', ], }, )