move launchd script inside package

This commit is contained in:
Jon Maddox 2015-09-15 02:29:57 -04:00
parent 6e927d68e5
commit 9ada5e6b2b
3 changed files with 2 additions and 4 deletions

View file

View file

@ -26,9 +26,6 @@
<false/>
</dict>
<key>WorkingDirectory</key>
<string>$APP_PATH$</string>
<key>StandardErrorPath</key>
<string>/Users/$USER$/Library/Logs/homeassitant.log</string>

View file

@ -12,7 +12,8 @@ PACKAGES = find_packages(exclude=['tests', 'tests.*'])
PACKAGE_DATA = \
{'homeassistant.components.frontend': ['index.html.template'],
'homeassistant.components.frontend.www_static': ['*.*'],
'homeassistant.components.frontend.www_static.images': ['*.*']}
'homeassistant.components.frontend.www_static.images': ['*.*'],
'homeassistant.startup': ['*.*']}
REQUIRES = [
'requests>=2,<3',