mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-26 06:17:20 +00:00

* Prevent default form action (#3172) * Use areas when generating Lovelace config (#3175) * Use areas when generating Lovelace config * Add missing return type * Convert auth-flow to TypeScript/Lit (#3174) * Change ha-pick-auth-provider to typescript * Convert auth-flow to TypeScript/Lit * Make sure we block emulated mouse events when touch is used (#3173) * Trim text * Update translations * Bumped version to 20190508.0
15 lines
475 B
Python
15 lines
475 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="home-assistant-frontend",
|
|
version="20190508.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,
|
|
)
|