From 660ea94d7308a38d36db7ce4640f6be10dd1fca6 Mon Sep 17 00:00:00 2001 From: MinRK Date: Sun, 14 Oct 2012 14:09:27 -0700 Subject: [PATCH] add missing 'qtconsole' extras_require The docs mention `easy_install ipython[qtconsole]`, but that would fail. The alternative would be to change the docs, but then we would have no expression of the pygments optional dependency. should be back ported to 0.13.1 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 183d341fc..dc25a7f07 100755 --- a/setup.py +++ b/setup.py @@ -230,6 +230,7 @@ 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', zmq = 'pyzmq>=2.1.4', doc = 'Sphinx>=0.3', test = 'nose>=0.10.1',