From 27dab0b2fdf50c0ff6ea1949a8e03dc4f6072bc4 Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 23 Jan 2013 09:58:04 -0800 Subject: [PATCH] add jinja to optional dependencies in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index dc25a7f07..d0386ec39 100755 --- a/setup.py +++ b/setup.py @@ -230,11 +230,11 @@ if 'setuptools' in sys.modules: setuptools_extra_args['entry_points'] = find_scripts(True) setup_args['extras_require'] = dict( parallel = 'pyzmq>=2.1.4', - qtconsole = 'pygments', + qtconsole = ['pyzmq>=2.1.4', 'pygments'], zmq = 'pyzmq>=2.1.4', doc = 'Sphinx>=0.3', test = 'nose>=0.10.1', - notebook = 'tornado>=2.0' + notebook = ['tornado>=2.0', 'pyzmq>=2.1.4', 'jinja2'], ) requires = setup_args.setdefault('install_requires', []) setupext.display_status = False