mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-22 04:17:20 +00:00
15 lines
453 B
Python
15 lines
453 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="home-assistant-frontend",
|
|
version="20211209.0",
|
|
description="The Home Assistant frontend",
|
|
url="https://github.com/home-assistant/frontend",
|
|
author="The Home Assistant Authors",
|
|
author_email="hello@home-assistant.io",
|
|
license="Apache-2.0",
|
|
packages=find_packages(include=["hass_frontend", "hass_frontend.*"]),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|