diff options
author | Isis Lovecruft <isis@torproject.org> | 2013-01-25 00:56:12 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2013-01-25 00:56:12 +0000 |
commit | 0911ec5330e460f79daca557bb03114276def026 (patch) | |
tree | fc50a845cfa46cb0433d76458cfdb8a455832261 /src/leap/__init__.py | |
parent | da15176bfb75122ce22922a670fe23afd2895178 (diff) |
Clean up directory structure to be better aligned with other leap python
project, add __init__.py to modules directories, and add query callback
function to couchdb in alias_resolver.py for check_recipient feature.
Diffstat (limited to 'src/leap/__init__.py')
-rw-r--r-- | src/leap/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/leap/__init__.py b/src/leap/__init__.py new file mode 100644 index 0000000..5fefbbf --- /dev/null +++ b/src/leap/__init__.py @@ -0,0 +1,9 @@ +# -*- encoding: utf-8 -*- + +from leap import mx +from leap import util +from leap import tests + +__all__ = ['mx', 'util', 'tests'] +__author__ = util.version.authors +__version__ = util.version.getVersion() |