From d12ab70f907c2b9cc5f9f0f8309573389e5f4d0e Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 18 Mar 2017 19:02:19 +0100 Subject: [PATCH] Add struct for python api --- hassio_api/hassio/__init__.py | 1 + hassio_api/setup.py | 38 +++++++++++++++++++++++++++++++++++ version.json | 4 ++++ 3 files changed, 43 insertions(+) create mode 100644 hassio_api/hassio/__init__.py create mode 100644 hassio_api/setup.py create mode 100644 version.json diff --git a/hassio_api/hassio/__init__.py b/hassio_api/hassio/__init__.py new file mode 100644 index 000000000..994410970 --- /dev/null +++ b/hassio_api/hassio/__init__.py @@ -0,0 +1 @@ +"""Init file for HassIO.""" diff --git a/hassio_api/setup.py b/hassio_api/setup.py new file mode 100644 index 000000000..2c841685e --- /dev/null +++ b/hassio_api/setup.py @@ -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' + ] +) diff --git a/version.json b/version.json new file mode 100644 index 000000000..24083acd1 --- /dev/null +++ b/version.json @@ -0,0 +1,4 @@ +{ + "supervisor_tag": "20170316", + "homeassistant_tag": "0.40.1", +}