Merge branch 'dev'

This commit is contained in:
Paulus Schoutsen 2015-09-01 01:56:18 -07:00
commit 40807f1ee0
2 changed files with 7 additions and 3 deletions

View File

@ -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 = '*'

View File

@ -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,