Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions rlipython/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import os
import sys

import colorama

from IPython.utils.strdispatch import StrDispatch

from IPython.core.error import TryNext, UsageError
Expand All @@ -28,6 +30,8 @@
from traitlets import Integer, CBool, Unicode, default


colorama.init()

def get_default_editor():
try:
ed = os.environ['EDITOR']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
name='rlipython',
version='0.1.2',
packages=['rlipython',],
install_requires=["ipython>5.3"],
install_requires=["colorama", "ipython>5.3"],
extras_requires=extras_requires,
license='BSD',
author='The IPython Development Team',
Expand Down