pyln: add pyln.proto.message.

This supports infrasructure for creating messages.  In particular, it
can be fed CSV from the spec's `tools/extract-formats.py` and then convert
them all to and from strings and binary formats.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Added: pyln: new module pyln.proto.message
This commit is contained in:
Rusty Russell
2020-05-28 09:36:52 +09:30
committed by Christian Decker
parent 5b4be02ed3
commit eb73a0dd8f
8 changed files with 1402 additions and 1 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'],
packages=['pyln.proto', 'pyln.proto.message'],
scripts=[],
zip_safe=True,
install_requires=requirements)