mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
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:
parent
d0aea28639
commit
77ee4eb8a0
25 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -1,9 +1,10 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
print find_packages()
|
||||||
setup(
|
setup(
|
||||||
name = 'Pokedex',
|
name = 'Pokedex',
|
||||||
version = '0.1',
|
version = '0.1',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
package_data = { '': ['data', 'images'] },
|
package_data = { '': ['data/*', 'images'] },
|
||||||
|
|
||||||
entry_points = {
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
Loading…
Reference in a new issue