From c9662fcb7beffd71eafe5b62c091c2edb227fc72 Mon Sep 17 00:00:00 2001 From: Teemu R Date: Sat, 8 Apr 2017 01:58:20 +0200 Subject: [PATCH] add future requirement (#47) bump the version & add future requirement --- CHANGELOG | 6 +++++- setup.py | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ae77c5e1..efc01620 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,12 @@ Changelog ========= +0.2.4.2 (2017-04-08) +-------------------- +- Add installation requirement for future package. [Teemu Rytilahti] + 0.2.4.1 (2017-03-26) ------------- +-------------------- - Cli: display an error if no ip is given. [Teemu Rytilahti] diff --git a/setup.py b/setup.py index 53aa8211..bfc599e8 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ from setuptools import setup setup(name='pyHS100', - version='0.2.4.1', + version='0.2.4.2', description='Interface for TPLink HS100 Smart Plugs.', url='https://github.com/GadgetReactor/pyHS100', author='Sean Seah (GadgetReactor)', author_email='sean@gadgetreactor.com', license='GPLv3', packages=['pyHS100'], - install_requires=['click', 'click-datetime'], + install_requires=['click', 'click-datetime', 'future'], entry_points={ 'console_scripts': [ 'pyhs100=pyHS100.cli:cli',