summaryrefslogtreecommitdiff
path: root/src/leap/__init__.py
blob: 99a951f0d90494063897727a3cbcd8b1dc57754d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- encoding: utf-8 -*-

from leap import mx
from leap import util
from leap.util import version as mxversion

__all__     = ['mx', 'util']
__author__  = mxversion.authors
__version__ = mxversion.getVersion()

print "Authors: %s" % __author__
print "Version: %s" % __version__