Skip to content

Commit 596ca14

Browse files
committed
Specify subpackages in setup.py and Bump new version
1 parent 623fc35 commit 596ca14

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@
1616
install_requires.append('greenlet')
1717

1818
setup(name='neovim',
19-
version='0.0.18',
19+
version='0.0.19',
2020
description='Python client to neovim',
2121
url='http://github.com/neovim/python-client',
22-
download_url='https://github.com/neovim/python-client/archive/0.0.18.tar.gz',
22+
download_url='https://github.com/neovim/python-client/archive/0.0.19.tar.gz',
2323
author='Thiago de Arruda',
2424
author_email='[email protected]',
2525
license='MIT',
26-
packages=['neovim'],
26+
packages=['neovim', 'neovim.api', 'neovim.msgpack_rpc',
27+
'neovim.msgpack_rpc.event_loop', 'neovim.plugins'],
2728
install_requires=install_requires,
2829
zip_safe=False)

0 commit comments

Comments
 (0)