forked from iMicknl/python-overkiz-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.55 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "pyoverkiz"
version = "1.18.2"
description = "Async Python client to interact with internal OverKiz API (e.g. used by Somfy TaHoma)."
readme = "README.md"
authors = [
{name = "Mick Vleeshouwer", email = "mick@imick.nl"},
{name = "Vincent Le Bourlot"},
{name = "Thibaut Etienne"},
]
license = {text = "MIT"}
requires-python = "<4.0,>=3.10"
packages = [
{ include = "pyoverkiz" }
]
dependencies = [
"aiohttp<4.0.0,>=3.10.3",
"pyhumps<4.0.0,>=3.8.0",
"backoff<3.0,>=1.10.0",
"attrs>=21.2",
"boto3<2.0.0,>=1.18.59",
"warrant-lite<2.0.0,>=1.0.4",
"backports-strenum<2.0.0,>=1.2.4; python_version < \"3.11\"",
]
[project.urls]
homepage = "https://github.com/iMicknl/python-overkiz-api"
repository = "https://github.com/iMicknl/python-overkiz-api"
[tool.uv]
dev-dependencies = [
"tox<5.0.0,>=4.17.1",
"pytest>=8.3.2,<9.0.0",
"pytest-cov<7,>=5",
"pre-commit<5.0,>=3.8",
"pytest-asyncio<1.1.0,>=0.23.8",
"ruff>=0.12.0",
"mypy>=1.16.1",
]
[tool.ruff.lint]
select = [
# flake8-async
# "ASYNC",
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# ruff
"RUF",
]
ignore = ["E501"] # Line too long
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"pyoverkiz/*",
]
[tool.hatch.build.targets.wheel]
packages = ["pyoverkiz"]
only-packages = true
[tool.mypy]
exclude = "tests/"
ignore_missing_imports = true