From 8fa80b87e264b79f248278335a3e32e3d4bba81e Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Fri, 29 May 2015 23:32:29 -0400 Subject: [PATCH] Add version to moto.__init__ Closes #353. --- moto/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/moto/__init__.py b/moto/__init__.py index 0b0137d4..7e13cf6b 100644 --- a/moto/__init__.py +++ b/moto/__init__.py @@ -2,6 +2,9 @@ from __future__ import unicode_literals import logging logging.getLogger('boto').setLevel(logging.CRITICAL) +__title__ = 'moto' +__version__ = '0.4.2' + from .autoscaling import mock_autoscaling # flake8: noqa from .cloudformation import mock_cloudformation # flake8: noqa from .cloudwatch import mock_cloudwatch # flake8: noqa