veekun_pokedex/setup.py

20 lines
409 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'] },
2009-11-02 04:42:13 +00:00
install_requires=[
'docutils',
'SQLAlchemy>=0.5.1',
'whoosh>=0.3.0b24',
],
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
],
},
)