X Tutup
Skip to content

Commit 6117c76

Browse files
committed
Add in bpdb to setup.py and bump version number in __init__
1 parent cc65d51 commit 6117c76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# THE SOFTWARE.
2222

2323

24-
__version__ = 'dev'
24+
__version__ = '0.9.7'
2525

2626

2727
def embed(locals_=None, args=['-i', '-q'], banner=None):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
install_requires = [
4141
'pygments'
4242
],
43-
packages = ["bpython"],
43+
packages = ["bpython", "bpdb"],
4444
data_files = [
4545
(os.path.join(man_dir, 'man1'), ['doc/bpython.1']),
4646
(os.path.join(man_dir, 'man5'), ['doc/bpython-config.5']),

0 commit comments

Comments
 (0)
X Tutup