veekun_pokedex/setup.py
2011-04-26 01:58:38 +03:00

23 lines
473 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.7.3',
'whoosh>=2.2.2',
'markdown',
'construct',
'argparse',
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:main',
],
},
)