veekun_pokedex/setup.py
Andrew Ekstedt 7576f17967 Require Whoosh <2.7
Because they can't seem to make a minor release without breaking backwards
compatibility: Whoosh 2.7 removed the spelling argument from schema.ID.
2015-05-23 18:26:08 -07:00

23 lines
468 B
Python

from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
zip_safe = False,
packages = find_packages(),
package_data = {
'pokedex': ['data/csv/*.csv']
},
install_requires=[
'SQLAlchemy>=0.9.7',
'whoosh>=2.5,<2.7',
'markdown',
'construct',
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
)