From bc6df36d37f00cecb6cba075e1dfc5fa86181bee Mon Sep 17 00:00:00 2001 From: shimizukawa Date: Sat, 7 Mar 2015 16:29:29 +0900 Subject: [PATCH] add extras_require for websupport and test. --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup.py b/setup.py index 0ea008008..57af00f06 100644 --- a/setup.py +++ b/setup.py @@ -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