mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Setup.py fixes
This commit is contained in:
parent
3ea91f917d
commit
abb8958775
@ -1,6 +1,6 @@
|
|||||||
""" Constants used by Home Assistant components. """
|
""" 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.
|
# Can be used to specify a catch all when registering state or event listeners.
|
||||||
MATCH_ALL = '*'
|
MATCH_ALL = '*'
|
||||||
|
8
setup.py
8
setup.py
@ -18,8 +18,12 @@ PACKAGE_DATA = \
|
|||||||
'homeassistant.components.frontend.www_static': ['*.*'],
|
'homeassistant.components.frontend.www_static': ['*.*'],
|
||||||
'homeassistant.components.frontend.www_static.images': ['*.*']}
|
'homeassistant.components.frontend.www_static.images': ['*.*']}
|
||||||
|
|
||||||
REQUIRES = \
|
REQUIRES = [
|
||||||
[line.strip() for line in open('requirements.txt', 'r')]
|
'requests>=2,<3',
|
||||||
|
'pyyaml>=3.11,<4',
|
||||||
|
'pytz>=2015.4',
|
||||||
|
'pip>=7.0.0',
|
||||||
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=PACKAGE_NAME,
|
name=PACKAGE_NAME,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user