mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
setup.py needs a list for package_data, not a string
This commit is contained in:
parent
585cb31c0a
commit
71b5359d57
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ setup(
|
||||||
name = 'Pokedex',
|
name = 'Pokedex',
|
||||||
version = '0.1',
|
version = '0.1',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
package_data = { '': 'data' },
|
package_data = { '': ['data'] },
|
||||||
install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'],
|
install_requires=['SQLAlchemy>=0.5.1', 'whoosh==0.3.0b5'],
|
||||||
|
|
||||||
entry_points = {
|
entry_points = {
|
||||||
|
|
Loading…
Reference in a new issue