1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bluecurrent-api"
version = "1.2.3"
authors = [
{ name="Floris272", email="florispuijk@outlook.com" },
]
description = "A wrapper for the Blue Current websocket api"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"websockets >= 10.0",
"pytz >= 2023.4"
]
[project.urls]
"Homepage" = "https://github.com/bluecurrent/HomeAssistantAPI"
"Bug Tracker" = "https://github.com/bluecurrent/HomeAssistantAPI/issues"
|