From 6023417aab37567ced3cea10cd54fa27692ae05e Mon Sep 17 00:00:00 2001 From: Teemu Rytilahti Date: Mon, 10 Jul 2017 21:33:45 +0200 Subject: [PATCH] add typing requirement & bump the version, fixes #24 --- mirobo/version.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mirobo/version.py b/mirobo/version.py index 9f1c1dbf4..7c14b9aca 100644 --- a/mirobo/version.py +++ b/mirobo/version.py @@ -1,2 +1,2 @@ # flake8: noqa -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/setup.py b/setup.py index 46c9e9665..195985931 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages=["mirobo"], - install_requires=['construct', 'click', 'cryptography', 'pretty_cron'], + install_requires=['construct', 'click', 'cryptography', 'pretty_cron', 'typing'], entry_points={ 'console_scripts': [ 'mirobo=mirobo.cli:cli',