veekun_pokedex/setup.py

24 lines
490 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-02 04:42:13 +00:00
install_requires=[
2014-07-27 17:13:22 +00:00
'SQLAlchemy>=0.9.7',
'whoosh>=2.5,<2.7',
2010-05-31 22:13:34 +00:00
'markdown',
'construct',
2015-10-05 15:11:08 +00:00
'six>=1.9.0',
2009-11-02 04:42:13 +00:00
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
)