Moved CSV sources into pokedex/.
authorEevee <git@veekun.com>
Mon, 23 Feb 2009 07:44:40 +0000 (23:44 -0800)
committerEevee <git@veekun.com>
Mon, 23 Feb 2009 07:44:40 +0000 (23:44 -0800)
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.

25 files changed:
pokedex/data/csv/abilities.csv [moved from data/csv/abilities.csv with 100% similarity]
pokedex/data/csv/contest_effects.csv [moved from data/csv/contest_effects.csv with 100% similarity]
pokedex/data/csv/egg_groups.csv [moved from data/csv/egg_groups.csv with 100% similarity]
pokedex/data/csv/evolution_chains.csv [moved from data/csv/evolution_chains.csv with 100% similarity]
pokedex/data/csv/evolution_methods.csv [moved from data/csv/evolution_methods.csv with 100% similarity]
pokedex/data/csv/generations.csv [moved from data/csv/generations.csv with 100% similarity]
pokedex/data/csv/growth_rates.csv [moved from data/csv/growth_rates.csv with 100% similarity]
pokedex/data/csv/languages.csv [moved from data/csv/languages.csv with 100% similarity]
pokedex/data/csv/move_effects.csv [moved from data/csv/move_effects.csv with 100% similarity]
pokedex/data/csv/move_targets.csv [moved from data/csv/move_targets.csv with 100% similarity]
pokedex/data/csv/moves.csv [moved from data/csv/moves.csv with 100% similarity]
pokedex/data/csv/pokemon.csv [moved from data/csv/pokemon.csv with 100% similarity]
pokedex/data/csv/pokemon_abilities.csv [moved from data/csv/pokemon_abilities.csv with 100% similarity]
pokedex/data/csv/pokemon_dex_numbers.csv [moved from data/csv/pokemon_dex_numbers.csv with 100% similarity]
pokedex/data/csv/pokemon_egg_groups.csv [moved from data/csv/pokemon_egg_groups.csv with 100% similarity]
pokedex/data/csv/pokemon_flavor_text.csv [moved from data/csv/pokemon_flavor_text.csv with 100% similarity]
pokedex/data/csv/pokemon_names.csv [moved from data/csv/pokemon_names.csv with 100% similarity]
pokedex/data/csv/pokemon_stats.csv [moved from data/csv/pokemon_stats.csv with 100% similarity]
pokedex/data/csv/pokemon_types.csv [moved from data/csv/pokemon_types.csv with 100% similarity]
pokedex/data/csv/stats.csv [moved from data/csv/stats.csv with 100% similarity]
pokedex/data/csv/type_efficacy.csv [moved from data/csv/type_efficacy.csv with 100% similarity]
pokedex/data/csv/types.csv [moved from data/csv/types.csv with 100% similarity]
pokedex/data/csv/version_groups.csv [moved from data/csv/version_groups.csv with 100% similarity]
pokedex/data/csv/versions.csv [moved from data/csv/versions.csv with 100% similarity]
setup.py

index 2ded9f0..777ab1b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -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': [