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/> <false/>
</dict> </dict>
<key>WorkingDirectory</key>
<string>$APP_PATH$</string>
<key>StandardErrorPath</key> <key>StandardErrorPath</key>
<string>/Users/$USER$/Library/Logs/homeassitant.log</string> <string>/Users/$USER$/Library/Logs/homeassitant.log</string>

View File

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