From ed44ab9eec06be7cf2cf0608a5a44791e998abf1 Mon Sep 17 00:00:00 2001 From: clach04 Date: Tue, 2 Oct 2018 22:04:42 -0700 Subject: [PATCH] Add version number for Issue #34 Using 7.0.1 to be slightly ahead of https://pypi.org/project/pytuya/ --- pytuya/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pytuya/__init__.py b/pytuya/__init__.py index 6666076..2ad5d8c 100644 --- a/pytuya/__init__.py +++ b/pytuya/__init__.py @@ -27,6 +27,10 @@ import pyaes # https://github.com/ricmoo/pyaes +version_tuple = (7, 0, 1) +version = version_string = __version__ = '%d.%d.%d' % version_tuple +__author__ = 'clach04' + log = logging.getLogger(__name__) logging.basicConfig() # TODO include function name/line numbers in log #log.setLevel(level=logging.DEBUG) # Debug hack!