mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Require docutils.
This commit is contained in:
parent
2d39b7c530
commit
2d88a8c936
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -5,7 +5,11 @@ setup(
|
|||
zip_safe = False,
|
||||
packages = find_packages(),
|
||||
package_data = { '': ['pokedex/data'] },
|
||||
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b24'],
|
||||
install_requires=[
|
||||
'docutils',
|
||||
'SQLAlchemy>=0.5.1',
|
||||
'whoosh>=0.3.0b24',
|
||||
],
|
||||
|
||||
entry_points = {
|
||||
'console_scripts': [
|
||||
|
|
Loading…
Reference in a new issue