Restructured as package

This commit is contained in:
Mark Qvist 2020-04-29 12:57:06 +02:00
commit aecb142229
6 changed files with 44 additions and 1 deletions

7
LXMF/__init__.py Normal file
View file

@ -0,0 +1,7 @@
import os
import glob
from .LXMF import LXMessage
from .LXMF import LXMRouter
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]