mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-05 00:49:53 +00:00
* [ci skip] Translation update * Add link to the community forums to find more blueprints (#7947) * Add link to the community forums to find more blueprints * Apply suggestions from code review Co-authored-by: Paulus Schoutsen <balloob@gmail.com> Co-authored-by: Paulus Schoutsen <balloob@gmail.com> * Fix `ha-relative-time` usage for tags and sun (#7944) * Bumped version to 20201212.0 Co-authored-by: HomeAssistant Azure <hello@home-assistant.io> Co-authored-by: Paulus Schoutsen <balloob@gmail.com> Co-authored-by: Philip Allgaier <mail@spacegaier.de>
15 lines
475 B
Python
15 lines
475 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="home-assistant-frontend",
|
|
version="20201212.0",
|
|
description="The Home Assistant frontend",
|
|
url="https://github.com/home-assistant/home-assistant-polymer",
|
|
author="The Home Assistant Authors",
|
|
author_email="hello@home-assistant.io",
|
|
license="Apache License 2.0",
|
|
packages=find_packages(include=["hass_frontend", "hass_frontend.*"]),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|