Skip to content

Commit 254e36e

Browse files
committed
Add bpython-urwid to entry_points and move bpyth-gtk to gui_scripts.
1 parent ce19263 commit 254e36e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,11 @@ def initialize_options(self):
9292
entry_points = {
9393
'console_scripts': [
9494
'bpython = bpython.cli:main',
95-
'bpython-gtk = bpython.gtk_:main',
95+
'bpython-urwid = bpython.urwid:main',
9696
],
97+
'gui_scripts': [
98+
'bpython-gtk = bpython.gtk_:main'
99+
]
97100
},
98101
scripts = ([] if using_setuptools else ['data/bpython',
99102
'data/bpython-gtk']),

0 commit comments

Comments
 (0)