From 506151df0f0962201fd13580aa3de209a84db01b 2012-10-15 17:05:55 From: Min RK Date: 2012-10-15 17:05:55 Subject: [PATCH] Merge pull request #2492 from minrk/pygments_setup add missing 'qtconsole' extras_require The docs mention `easy_install ipython[qtconsole]`, but that would fail because it was undefined. It now implies the pygments extra dependency described in the docs. --- diff --git a/setup.py b/setup.py index 183d341..dc25a7f 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',