veekun_pokedex/setup.py
Eevee bad044d1d8 Initial commit, with much of the data imported.
Includes a wrapper script 'pokedex' that can, so far, read data from a
db and spit out CSVs or deploy CSVs to a db.
2009-02-05 00:05:42 -08:00

14 lines
282 B
Python

from setuptools import setup, find_packages
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': ['data', 'images'] },
entry_points = {
'console_scripts': [
'pokedex = pokedex:main',
],
},
)