projects
/
zzz-pokedex.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Redumped encounters for all five gen4 games.
[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
=[
9
'docutils'
,
10
'SQLAlchemy>=0.5.1'
,
11
'whoosh>=0.3.0b24'
,
12
],
13
14
entry_points
= {
15
'console_scripts'
: [
16
'pokedex = pokedex:main'
,
17
],
18
},
19
)