forked from home-assistant/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
38 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
include README.md | ||
include LICENSE.md | ||
graft hass_frontend | ||
graft hass_frontend_es5 | ||
recursive-exclude * *.py[co] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools~=60.5", "wheel~=0.37.1"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[metadata] | ||
name = home-assistant-frontend | ||
version = 20220127.0 | ||
author = The Home Assistant Authors | ||
author_email = [email protected] | ||
license = Apache-2.0 | ||
platforms = any | ||
description = The Home Assistant frontend | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/home-assistant/frontend | ||
|
||
[options] | ||
packages = find: | ||
zip_safe = False | ||
include_package_data = True | ||
python_requires = >= 3.4.0 | ||
|
||
[options.packages.find] | ||
include = | ||
hass_frontend* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]", | ||
license="Apache-2.0", | ||
packages=find_packages(include=["hass_frontend", "hass_frontend.*"]), | ||
include_package_data=True, | ||
zip_safe=False, | ||
) | ||
setup() |