mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-30 12:11:32 +08:00
add jinja to optional dependencies in setup.py
This commit is contained in:
parent
3ed81f140e
commit
27dab0b2fd
4
setup.py
4
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
|
||||
|
Loading…
Reference in New Issue
Block a user