ha-supervisor/setup.py

43 lines
1.3 KiB
Python
Raw Normal View History

2018-03-13 23:09:53 +01:00
from setuptools import setup
from hassio.const import HASSIO_VERSION
setup(
name="HassIO",
2018-03-13 23:09:53 +01:00
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 HassOS"),
long_description=(
"A maintainless private cloud operator system that"
"setup a Home-Assistant instance. Based on HassOS"
),
2018-03-13 23:09:53 +01:00
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",
2018-03-13 23:09:53 +01:00
],
keywords=["docker", "home-assistant", "api"],
2018-03-13 23:09:53 +01:00
zip_safe=False,
platforms="any",
2018-03-13 23:09:53 +01:00
packages=[
"hassio",
"hassio.docker",
"hassio.addons",
"hassio.api",
"hassio.misc",
"hassio.utils",
"hassio.snapshots",
2018-03-13 23:09:53 +01:00
],
include_package_data=True,
)