projects
/
zzz-pokedex.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed some stylistic issues with ability effects.
[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
= {
8
'pokedex'
: [
'data/csv/*.csv'
]
9
},
10
install_requires
=[
11
'docutils'
,
12
'SQLAlchemy>=0.5.1'
,
13
'whoosh>=0.3.0b24'
,
14
],
15
16
entry_points
= {
17
'console_scripts'
: [
18
'pokedex = pokedex:main'
,
19
],
20
},
21
)