Move to setup.cfg and config for build-system (#11484)

This commit is contained in:
Marc Mueller
2022-01-29 06:18:17 +01:00
committed by GitHub
parent 730e9b144d
commit ce0ced0b6a
8 changed files with 38 additions and 22 deletions

View File

@@ -1,14 +1,7 @@
from setuptools import setup, find_packages
"""
Entry point for setuptools. Required for editable installs.
TODO: Remove file after updating to pip 21.3
"""
from setuptools import setup
setup(
name="home-assistant-frontend",
version="20220127.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,
)
setup()