mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-21 16:16:31 +00:00
Add struct for python api
This commit is contained in:
parent
c826ee10ed
commit
d12ab70f90
1
hassio_api/hassio/__init__.py
Normal file
1
hassio_api/hassio/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
"""Init file for HassIO."""
|
38
hassio_api/setup.py
Normal file
38
hassio_api/setup.py
Normal file
@ -0,0 +1,38 @@
|
||||
from setuptools import setup
|
||||
|
||||
VERSION = "1.5"
|
||||
|
||||
setup(
|
||||
name='HassIO',
|
||||
version=VERSION,
|
||||
license='BSD License',
|
||||
author='The Home Assistant Authors',
|
||||
author_email='hello@home-assistant.io',
|
||||
url='https://home-assistant.io/',
|
||||
description=('Open-source private cloud os for Home-Assistant'
|
||||
' based on ResinOS'),
|
||||
long_description=('A maintenainless private cloud operator system that'
|
||||
'setup a Home-Assistant instance. Based on ResinOS'),
|
||||
classifiers=[
|
||||
'Intended Audience :: End Users/Desktop',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Apache Software License',
|
||||
'Operating System :: OS Independent',
|
||||
'Topic :: Home Automation'
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
'Topic :: Scientific/Engineering :: Atmospheric Science',
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Intended Audience :: Developers',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
],
|
||||
keywords=['docker', 'home-assistant', 'api'],
|
||||
zip_safe=False,
|
||||
platforms='any',
|
||||
packages=['hassio'],
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'async_timeout',
|
||||
'aiohttp',
|
||||
'docker-py'
|
||||
]
|
||||
)
|
4
version.json
Normal file
4
version.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"supervisor_tag": "20170316",
|
||||
"homeassistant_tag": "0.40.1",
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user