19 lines
501 B
Python
19 lines
501 B
Python
"""Consts"""
|
|
DOMAIN = 'blueprint'
|
|
DOMAIN_DATA = '{}_data'.format(DOMAIN)
|
|
VERSION = '0.0.1'
|
|
URL = 'https://blueprint.com/api'
|
|
REQUIRED_FILES = ['sensor.py', 'const.py']
|
|
ISSUE_URL = 'https://github.com/custom-components/blueprint/issues'
|
|
PLATFORMS = ['sensor']
|
|
|
|
STARTUP = """
|
|
----------------------------------------------
|
|
{name}
|
|
Version: {version}
|
|
This is a custom component
|
|
If you have any issues with this you need to open an issue here:
|
|
{issueurl}
|
|
----------------------------------------------
|
|
"""
|