diff --git a/custom_components/integration_blueprint/const.py b/custom_components/integration_blueprint/const.py index cbbf57e..85f1c52 100644 --- a/custom_components/integration_blueprint/const.py +++ b/custom_components/integration_blueprint/const.py @@ -1,9 +1,12 @@ """Constants for integration_blueprint.""" from logging import Logger, getLogger +from typing import Final LOGGER: Logger = getLogger(__package__) -DOMAIN = "integration_blueprint" -ATTRIBUTION = "Data provided by http://jsonplaceholder.typicode.com/" -ISSUE_URL = "https://github.com/Limych/ha-blueprint/issues" +NAME: Final = "Integration blueprint" +DOMAIN: Final = "integration_blueprint" +VERSION: Final = "0.0.0" +ATTRIBUTION: Final = "Data provided by http://jsonplaceholder.typicode.com/" +ISSUE_URL: Final = "https://github.com/Limych/ha-blueprint/issues" diff --git a/custom_components/integration_blueprint/manifest.json b/custom_components/integration_blueprint/manifest.json index c4b1135..14be6b4 100644 --- a/custom_components/integration_blueprint/manifest.json +++ b/custom_components/integration_blueprint/manifest.json @@ -1,6 +1,6 @@ { "domain": "integration_blueprint", - "name": "", + "name": "Integration blueprint", "codeowners": [ "@Limych" ], @@ -10,5 +10,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/Limych/ha-blueprint/issues", "requirements": [], - "version": "" + "version": "0.0.0" } \ No newline at end of file diff --git a/hacs.json b/hacs.json index eb88036..33b2f12 100644 --- a/hacs.json +++ b/hacs.json @@ -1,5 +1,5 @@ { - "name": "", + "name": "Integration blueprint", "hide_default_branch": true, "homeassistant": "2024.6.0", "render_readme": true