diff options
-rw-r--r-- | leap/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/leap/__init__.py b/leap/__init__.py new file mode 100644 index 0000000..370676e --- /dev/null +++ b/leap/__init__.py @@ -0,0 +1,9 @@ +# -*- encoding: utf-8 -*- + +from . import mx +from . import util +from . import tests + +__author__ = util.version.authors +__version__ = util.version.getVersion() +__all__ = ['mx', 'util', 'tests'] |