veekun_pokedex/setup.py

24 lines
485 B
Python
Raw Permalink Normal View History

from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
zip_safe = False,
packages = find_packages(),
package_data = {
'pokedex': ['data/csv/*.csv']
},
2009-11-01 20:42:13 -08:00
install_requires=[
'SQLAlchemy>=0.7.3',
'whoosh>=2.2.2',
2010-05-31 15:13:34 -07:00
'markdown',
'construct',
2011-04-26 01:58:38 +03:00
'argparse',
2009-11-01 20:42:13 -08:00
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
)