summaryrefslogtreecommitdiff
path: root/src/otp2289/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/otp2289/__init__.py')
-rw-r--r--src/otp2289/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/otp2289/__init__.py b/src/otp2289/__init__.py
index 8f8cf24..da65d9e 100644
--- a/src/otp2289/__init__.py
+++ b/src/otp2289/__init__.py
@@ -31,6 +31,7 @@ from .generator import (
31 OTPGenerator, 31 OTPGenerator,
32 OTPGeneratorError, 32 OTPGeneratorError,
33 OTPResponse, 33 OTPResponse,
34 OTPResponseError,
34) 35)
35from .server import ( 36from .server import (
36 OTPInvalidResponseError, 37 OTPInvalidResponseError,
@@ -41,7 +42,7 @@ from .server import (
41) 42)
42 43
43__author__ = 'Simeon Simeonov' 44__author__ = 'Simeon Simeonov'
44__version__ = '2.0.0a' 45__version__ = '2.0.0'
45__license__ = 'BSD 2-Clause' 46__license__ = 'BSD 2-Clause'
46 47
47 48
@@ -63,6 +64,7 @@ __all__ = [
63 'OTPGeneratorError', 64 'OTPGeneratorError',
64 'OTPInvalidResponseError', 65 'OTPInvalidResponseError',
65 'OTPResponse', 66 'OTPResponse',
67 'OTPResponseError',
66 'OTPState', 68 'OTPState',
67 'OTPStateError', 69 'OTPStateError',
68 'OTPStore', 70 'OTPStore',