Commit 25e288cf authored by Arnaud Fontaine's avatar Arnaud Fontaine

Make ipython and bpython optional dependencies.

These are just optional dependencies to enhance slap console, which works fine
with the default python interpreter, so they should not be required.
parent ff1fd94d
......@@ -54,14 +54,15 @@ setup(name=name,
'zc.buildout',
'cliff',
'requests',
'ipython',
'bpython',
] + additional_install_requires,
extras_require={'docs': (
extras_require={
'docs': (
'Sphinx',
'repoze.sphinx.autointerface',
'sphinxcontrib.programoutput'
),},
),
'ipython_console': ('ipython',),
'bpython_console': ('bpython',)},
tests_require=[
'pyflakes',
'mock'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment