projects
/
zzz-pokedex.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add identifier_from_name() function.
[zzz-pokedex.git]
/
setup.py
diff --git
a/setup.py
b/setup.py
index
cf9f278
..
3bc7028
100644
(file)
--- a/
setup.py
+++ b/
setup.py
@@
-4,12
+4,19
@@
setup(
version = '0.1',
zip_safe = False,
packages = find_packages(),
version = '0.1',
zip_safe = False,
packages = find_packages(),
- package_data = { '': ['pokedex/data'] },
- install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b24'],
+ package_data = {
+ 'pokedex': ['data/csv/*.csv']
+ },
+ install_requires=[
+ 'SQLAlchemy>=0.6.6',
+ 'whoosh>=1.1.0',
+ 'markdown',
+ 'construct',
+ ],
entry_points = {
'console_scripts': [
entry_points = {
'console_scripts': [
- 'pokedex = pokedex:main',
+ 'pokedex = pokedex
.main
:main',
],
},
)
],
},
)