veekun_pokedex/setup.py
Eevee 77ee4eb8a0 Moved CSV sources into pokedex/.
This appears to be the only way to make data access in eggs actually
work, and is why the Platinum sprites are in pokedex/ too.
2009-02-22 23:44:40 -08:00

15 lines
306 B
Python

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