veekun_pokedex/setup.py

26 lines
504 B
Python
Raw Normal View History

from setuptools import setup, find_packages
import sys
setup(
name = 'Pokedex',
version = '0.1',
zip_safe = False,
packages = find_packages(),
package_data = {
'pokedex': ['data/csv/*.csv']
},
install_requires = [
'SQLAlchemy>=0.9.7',
'whoosh>=2.5,<2.7',
'markdown',
'construct',
'six>=1.9.0',
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
)