1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

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.
This commit is contained in:
Eevee 2009-02-05 00:05:42 -08:00
commit bad044d1d8
29 changed files with 12623 additions and 0 deletions

13
setup.py Normal file
View file

@ -0,0 +1,13 @@
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',
],
},
)