pyln.proto: fix package list in setup.py

Remove non-existant pyln.proto.bolts.  bolts will have separate setup.py, so we
can rev the versions individually.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2020-06-17 06:50:30 +09:30
committed by Christian Decker
parent 601464416b
commit 013eced4ce

View File

@@ -17,7 +17,7 @@ setup(name='pyln-proto',
author='Christian Decker',
author_email='decker.christian@gmail.com',
license='MIT',
packages=['pyln.proto', 'pyln.proto.message', 'pyln.proto.message.bolts', 'pyln.proto.message.bolt1'],
packages=['pyln.proto', 'pyln.proto.message'],
scripts=[],
zip_safe=True,
install_requires=requirements)