veekun_pokedex/setup.py

23 lines
468 B
Python
Raw 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=[
2014-07-27 13:13:22 -04:00
'SQLAlchemy>=0.9.7',
'whoosh>=2.5,<2.7',
2010-05-31 15:13:34 -07:00
'markdown',
'construct',
2009-11-01 20:42:13 -08:00
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
)