new modules: pyln.proto.message.{bolt1,bolt2,bolt4,bolt7}

These are autogenerated, but now they export their own
MessageNamespace, as well as the raw csv.

They also expose their SubtypeTypes, MessageTypes and TlvStreamTypes,
though in theory these could clash (they don't for now, and it'd be
kinda awkward if they did).

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2020-06-04 12:18:05 +09:30
committed by Christian Decker
parent 59bb6b90ac
commit 85bb93618b
25 changed files with 439 additions and 325 deletions

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'],
packages=['pyln.proto', 'pyln.proto.message', 'pyln.proto.message.bolts', 'pyln.proto.message.bolt1'],
scripts=[],
zip_safe=True,
install_requires=requirements)