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 28 29 30 31 32 33 34 35 36 37 38 39
|
[project]
name = "pyHomee"
version = "1.3.8"
description = "a python library to interact with homee"
readme = "README.md"
license = "MIT"
requires-python = ">= 3.11"
dependencies = [
"aiohttp>=3.11",
"websockets>=13",
]
authors = [
{name = "Taraman17"}
]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/Taraman17/pyHomee"
[build-system]
requires = ["setuptools >= 80.0.0"]
build-backend = "setuptools.build_meta"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
branch = "master"
commit_parser = "conventional"
upload_to_PyPI = true
upload_to_release = true
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["pyHomee*"]
exclude = ["tests*"]
|