-
Notifications
You must be signed in to change notification settings - Fork 65
/
pyproject.toml
48 lines (42 loc) · 1.24 KB
/
pyproject.toml
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
[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.32.0",
"websocket-client>=1.0.0",
"async_timeout>=3.0.1",
"websockets>=13.1",
"aiohttp>=3.10.11"
]
requires-python = ">=3.12"
authors = [
{name = "Thomas Hahn", email = "homematicip-rest-api@outlook.com"},
]
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12"
]
keywords = ["homematicip cloud","homematicip"]
dynamic = [
"version"
]
license = {text = "GPL-3.0-or-later"}
[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"