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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ohme"
version = "1.7.1"
authors = [
{ name="Dan Raper", email="git@danr.uk" },
]
description = "A Python wrapper for the Ohme API, used by the Home Assistant integration."
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"aiohttp >= 3.0.0"
]
[project.urls]
"Homepage" = "https://github.com/dan-r/ohmepy"
"Bug Tracker" = "https://github.com/dan-r/ohmepy/issues"
|