-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 930 Bytes
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
[tool.poetry]
name = "wave-reader"
version = "2.0.2"
description = "Unofficial package for Airthings Wave communication."
authors = ["Zackary Troop"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ztroop/wave-reader-utils"
packages = [{include = "wave_reader"}]
[tool.poetry.dependencies]
python = "^3.10"
Authlib = "^1.7.2"
bleak = "^3.0.2"
httpx = "^0.28.1"
attrs = "^26.1.0"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
flake8 = "^7.3.0"
mypy = "^2.1.0"
isort = "^8.0.1"
black = "^26.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
include_trailing_comma = true
known_first_party = ["wave_reader"]
line_length = 79
multi_line_output = 5
not_skip = "__init__.py"
[tool.coverage.run]
relative_files = true
[tool.mypy]
ignore_missing_imports = true