The CSVs are now the only package data. Otherwise, setuptools would
copy every single sprite individually to the standard library directory,
which is slow and time-consuming and wasteful. If you need the sprites,
use them from the repo. :(
version = '0.1',
zip_safe = False,
packages = find_packages(),
version = '0.1',
zip_safe = False,
packages = find_packages(),
- package_data = { '': ['pokedex/data'] },
+ package_data = {
+ 'pokedex': ['data/csv/*.csv']
+ },
install_requires=[
'docutils',
'SQLAlchemy>=0.5.1',
install_requires=[
'docutils',
'SQLAlchemy>=0.5.1',