Files
lightning/contrib/pyln-proto/pyln/proto/__init__.py
Christian Decker 9bfdf234f3 pyln-proto: Avoid circular dependency in setup.py
It seems that loading the version from the source files triggers imports that
may not yet have been installed.
2020-05-05 13:28:54 +09:30

15 lines
327 B
Python

from .invoice import Invoice
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
from .wire import LightningConnection, LightningServerSocket
__version__ = '0.0.2'
__all__ = [
"Invoice",
"LightningServerSocket",
"LightningConnection",
"OnionPayload",
"LegacyOnionPayload",
"TlvPayload",
]