diff options
author | shimizukawa <shimizukawa@gmail.com> | 2015-03-07 16:29:29 +0900 |
---|---|---|
committer | shimizukawa <shimizukawa@gmail.com> | 2015-03-07 16:53:32 +0900 |
commit | bc6df36d37f00cecb6cba075e1dfc5fa86181bee (patch) | |
tree | b1fa4e66a1d1ff06d329d111eb8828b85e5f0505 /setup.py | |
parent | b45fec38138f16cb71867056cd11465659511c78 (diff) | |
download | sphinx-git-bc6df36d37f00cecb6cba075e1dfc5fa86181bee.tar.gz |
add extras_require for websupport and test.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -60,6 +60,15 @@ extras_require = { ':sys_platform=="win32"': [ 'colorama', ], + 'websupport': [ + 'sqlalchemy>=0.9', + 'whoosh>=2.0', + ], + 'test': [ + 'nose', + 'mock', # it would be better for 'test:python_version in "2.6,2.7"' + 'simplejson', # better: 'test:platform_python_implementation=="PyPy"' + ], } # for sdist installation with pip-1.5.6 |