From abb8958775faed6d7960fbdfcac2a164d8a4e745 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 1 Sep 2015 01:56:13 -0700 Subject: [PATCH] Setup.py fixes --- homeassistant/const.py | 2 +- setup.py | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 4ed110dcd93..058bf34e8a5 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,6 +1,6 @@ """ Constants used by Home Assistant components. """ -__version__ = "0.7.0" +__version__ = "0.7.0.1" # Can be used to specify a catch all when registering state or event listeners. MATCH_ALL = '*' diff --git a/setup.py b/setup.py index c1a1e94c6d1..f906df64965 100755 --- a/setup.py +++ b/setup.py @@ -18,8 +18,12 @@ PACKAGE_DATA = \ 'homeassistant.components.frontend.www_static': ['*.*'], 'homeassistant.components.frontend.www_static.images': ['*.*']} -REQUIRES = \ - [line.strip() for line in open('requirements.txt', 'r')] +REQUIRES = [ + 'requests>=2,<3', + 'pyyaml>=3.11,<4', + 'pytz>=2015.4', + 'pip>=7.0.0', +] setup( name=PACKAGE_NAME,