Skip to content

Commit 93f4b29

Browse files
move fmtstr dependency to extras_require
--HG-- branch : scroll-frontend
1 parent 435397a commit 93f4b29

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,11 @@ def initialize_options(self):
150150
long_description = """bpython is a fancy interface to the Python
151151
interpreter for Unix-like operating systems.""",
152152
install_requires = [
153-
'pygments',
154-
'fmtstr>=0.0.4'
153+
'pygments'
155154
],
155+
extras_require = {
156+
'scroll': ['fmtstr>=0.0.4']
157+
},
156158
tests_require = ['mock'],
157159
packages = ["bpython", "bpython.test", "bpython.translations", "bpdb", "bpython.scrollfrontend"],
158160
data_files = data_files,
@@ -165,7 +167,7 @@ def initialize_options(self):
165167
'console_scripts': [
166168
'bpython = bpython.cli:main',
167169
'bpython-urwid = bpython.urwid:main',
168-
'bpython-scroll = bpython.scroll:main',
170+
'bpython-scroll = bpython.scroll:main [scroll]',
169171
],
170172
'gui_scripts': [
171173
'bpython-gtk = bpython.gtk_:main'

0 commit comments

Comments
 (0)