magic-wormhole/src/wormhole/__init__.py

10 lines
233 B
Python
Raw Normal View History

2015-02-10 08:48:19 +00:00
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from .wormhole import create
from ._rlcompleter import input_with_completion
__all__ = ["create", "input_with_completion", "__version__"]