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 40 41 42 43 44 45 46 47 48 49 50 51
|
[build-system]
requires = [
"setuptools>=61",
"setuptools-scm>=8.0"]
[project]
name = "homematicip"
description = "An API for the homematicip cloud"
readme = "README.md"
dependencies = [
"requests>=2.24.0",
"websocket-client>=1.0.0",
"async_timeout>=3.0.1",
"websockets>=8.1",
"aiohttp>=3.9"
]
requires-python = ">=3.9"
authors = [
{name = "Thomas Hahn", email = "homematicip-rest-api@outlook.com"},
]
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = ["homematicip cloud","homematicip"]
dynamic = [
"version"
]
license = {file = "LICENSE.txt"}
[project.urls]
Homepage = "https://github.com/hahn-th/homematicip-rest-api"
Repository = "https://github.com/hahn-th/homematicip-rest-api.git"
Issues = "https://github.com/hahn-th/homematicip-rest-api/issues"
Changelog = "https://github.com/hahn-th/homematicip-rest-api/blob/master/CHANGELOG.md"
[tool.setuptools_scm]
version_file = "src/homematicip/_version.py"
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.scripts]
hmip_cli = "homematicip.cli.hmip_cli:main"
hmip_generate_auth_token = "homematicip.cli.hmip_generate_auth_token:main"
|