veekun_pokedex/setup.py
Andrew Ekstedt bdd1c930aa Require SQLAlchemy < 1.0
It appears SQLAlchemy 1.0 breaks something about the way we're using bindparam
in pokedex.db.multilang.
2015-05-21 20:14:16 -07:00

22 lines
477 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, <1.0',
'whoosh >=2.5, <2.7',
'markdown',
'construct',
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
)