We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The original plan was to put something like this in pyproject.toml:
pyproject.toml
[tool.poetry.dependencies] python = "^3.9" cryptography = ">=2.9.2" commentjson = "^0.9.0" zeroconf = { version=">=0.32.0", optional=True } aiocoap = { version=">=0.4.1", optional=True } bleak = { version=">=0.4.1", optional=True } [tool.poetry.extras] ble = ["bleak"] coap = ["aiocoap", "zeroconf"] ip = ["zeroconf]
Then refer to aiohomekit as aiohomekit[ble,coap,ip] in HA manifests.
aiohomekit[ble,coap,ip]
The SUPPORTS_ const are a bit pointless without this.
SUPPORTS_
If poetry can be configured to pull in all 3 into dev env by default i'd still want to do this I think.
The text was updated successfully, but these errors were encountered:
Jc2k
No branches or pull requests
The original plan was to put something like this in
pyproject.toml
:Then refer to aiohomekit as
aiohomekit[ble,coap,ip]
in HA manifests.The
SUPPORTS_
const are a bit pointless without this.If poetry can be configured to pull in all 3 into dev env by default i'd still want to do this I think.
The text was updated successfully, but these errors were encountered: