projects
/
zzz-pokedex.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Return correctly-cased foreign names from lookup. #15
[zzz-pokedex.git]
/
setup.py
1
from
setuptools
import
setup
,
find_packages
2
setup
(
3
name
=
'Pokedex'
,
4
version
=
'0.1'
,
5
packages
=
find_packages
(),
6
package_data
= {
''
:
'data'
},
7
install_requires
=[
'SQLAlchemy>=0.5.1'
,
'whoosh>=0.3.0b1'
],
8
9
entry_points
= {
10
'console_scripts'
: [
11
'pokedex = pokedex:main'
,
12
],
13
},
14
)