X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/c74ea7347fb10e9d8f62944eb92eaaf701755508..6e5bc73b215330da36dde873b584ac92ab5d72b9:/setup.py diff --git a/setup.py b/setup.py index cf9f278..3bc7028 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,19 @@ setup( version = '0.1', zip_safe = False, packages = find_packages(), - package_data = { '': ['pokedex/data'] }, - install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b24'], + 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', ], }, )