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.
This commit is contained in:
Eevee 2009-02-22 23:44:40 -08:00
parent d0aea28639
commit 77ee4eb8a0
25 changed files with 2 additions and 1 deletions

View file

@ -1,9 +1,10 @@
from setuptools import setup, find_packages
print find_packages()
setup(
name = 'Pokedex',
version = '0.1',
packages = find_packages(),
package_data = { '': ['data', 'images'] },
package_data = { '': ['data/*', 'images'] },
entry_points = {
'console_scripts': [