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