mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-20 19:27:16 +00:00

* Add support for encrypted files * Update tar.py * Update tar.py * Update tar.py * Update addon.py * Update API.md * Update API.md * Update tar.py * cleanup snapshot * Update API.md * Update const.py * Update const.py * Update validate.py * Update homeassistant.py * Update homeassistant.py * Update validate.py * Update validate.py * Update snapshot.py * Update utils.py * Update snapshot.py * Update utils.py * Update snapshot.py * Update validate.py * Update snapshot.py * Update validate.py * Update const.py * fix lint * Update snapshot.py * Update __init__.py * Update snapshot.py * Update __init__.py * Update __init__.py * Finish snapshot object * Fix struct * cleanup snapshot flow * fix some points * Add API upload * fix lint * Update voluptuous * fix docker * Update snapshots.py * fix versions * fix schema * fix schema * fix api * fix path * Handle import better * fix routing * fix bugs * fix bug * cleanup gz * fix some bugs * fix stage * Fix * fix * protect None password * fix API * handle exception better * fix * fix remove of addons * fix bug * clenaup code * fix none tasks * Encrypt Home-Assistant * fix decrypt * fix binary
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
from setuptools import setup
|
|
|
|
from hassio.const import HASSIO_VERSION
|
|
|
|
|
|
setup(
|
|
name='HassIO',
|
|
version=HASSIO_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 maintainless 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.6',
|
|
],
|
|
keywords=['docker', 'home-assistant', 'api'],
|
|
zip_safe=False,
|
|
platforms='any',
|
|
packages=[
|
|
'hassio',
|
|
'hassio.docker',
|
|
'hassio.addons',
|
|
'hassio.api',
|
|
'hassio.misc',
|
|
'hassio.utils',
|
|
'hassio.snapshots'
|
|
],
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'async_timeout==2.0.0',
|
|
'aiohttp==2.3.10',
|
|
'docker==3.0.1',
|
|
'colorlog==3.1.2',
|
|
'voluptuous==0.11.1',
|
|
'gitpython==2.1.8',
|
|
'pytz==2018.3',
|
|
'pyudev==0.21.0',
|
|
'pycryptodome==3.4.11'
|
|
]
|
|
)
|