##// END OF EJS Templates
add jinja to optional dependencies in setup.py
MinRK -
Show More
@@ -230,11 +230,11 b" if 'setuptools' in sys.modules:"
230 setuptools_extra_args['entry_points'] = find_scripts(True)
230 setuptools_extra_args['entry_points'] = find_scripts(True)
231 setup_args['extras_require'] = dict(
231 setup_args['extras_require'] = dict(
232 parallel = 'pyzmq>=2.1.4',
232 parallel = 'pyzmq>=2.1.4',
233 qtconsole = 'pygments',
233 qtconsole = ['pyzmq>=2.1.4', 'pygments'],
234 zmq = 'pyzmq>=2.1.4',
234 zmq = 'pyzmq>=2.1.4',
235 doc = 'Sphinx>=0.3',
235 doc = 'Sphinx>=0.3',
236 test = 'nose>=0.10.1',
236 test = 'nose>=0.10.1',
237 notebook = 'tornado>=2.0'
237 notebook = ['tornado>=2.0', 'pyzmq>=2.1.4', 'jinja2'],
238 )
238 )
239 requires = setup_args.setdefault('install_requires', [])
239 requires = setup_args.setdefault('install_requires', [])
240 setupext.display_status = False
240 setupext.display_status = False
General Comments 0
You need to be logged in to leave comments. Login now