Fixed some missed markdown identifier conversions.
[zzz-pokedex.git] / setup.py
1 from setuptools import setup, find_packages
2 setup(
3 name = 'Pokedex',
4 version = '0.1',
5 zip_safe = False,
6 packages = find_packages(),
7 package_data = {
8 'pokedex': ['data/csv/*.csv']
9 },
10 install_requires=[
11 'SQLAlchemy>=0.6.6',
12 'whoosh>=1.1.0',
13 'markdown',
14 'construct',
15 ],
16
17 entry_points = {
18 'console_scripts': [
19 'pokedex = pokedex.main:main',
20 ],
21 },
22 )