Merge branch 'lazy_entry' into trunk
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/3faee650 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/3faee650 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/3faee650 Branch: refs/heads/trunk Commit: 3faee650f71b89c0bab2977d50aea45ed543d494 Parents: a64b0ea 7db284c Author: Anthony Shaw <anthonys...@apache.org> Authored: Sun Oct 9 19:49:50 2016 +1100 Committer: Anthony Shaw <anthonys...@apache.org> Committed: Sun Oct 9 19:49:50 2016 +1100 ---------------------------------------------------------------------- docs/getting_started.rst | 14 +++---- libcloud/__init__.py | 8 +++- libcloud/base.py | 81 +++++++++++++++++++++++++++++++++++++++++ libcloud/test/test_init.py | 9 +++++ libcloud/utils/py3.py | 6 ++- setup.py | 5 ++- 6 files changed, 111 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/3faee650/libcloud/__init__.py ---------------------------------------------------------------------- diff --cc libcloud/__init__.py index 56248bd,4c42e91..aaa74c6 --- a/libcloud/__init__.py +++ b/libcloud/__init__.py @@@ -21,8 -21,14 +21,12 @@@ libcloud provides a unified interface t import os import codecs + from libcloud.base import DriverType # NOQA + from libcloud.base import DriverTypeFactoryMap # NOQA + from libcloud.base import get_driver # NOQA + + -__all__ = ['__version__', 'enable_debug'] -__version__ = '1.0.0' + try: import paramiko have_paramiko = True http://git-wip-us.apache.org/repos/asf/libcloud/blob/3faee650/setup.py ----------------------------------------------------------------------