forked from jeeftor/weatherflow4py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.04 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
[tool.poetry]
name = "weatherflow4py"
version = "1.4.1"
description = "Python library used by Home Assistant to interact with the WeatherFlow REST API"
authors = ["Jeef <jeeftor@users.noreply.github.com>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
dataclasses-json = "^0.6.3"
aiohttp = ">=3.9.1"
marshmallow = "^3.20.1"
websockets = ">=11.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
ruff = "^0.1.9"
mypy = "^1.8.0"
pytest = "^7.4.3"
pytest-asyncio = "^0.23.2"
aioresponses = "^0.7.6"
coverage = "^7.4.0"
python-dotenv = "^1.0.1"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
#addopts = "-n 8 --cov-report xml:cov.xml --cov src --cov-report term-missing --durations-min
testpaths = [
"tests"
]
[tool.coverage.report]
show_missing = true
[tool.coverage.run]
branch = true
source = ["weatherflow4py", "tests"]
[tool.coverage.paths]
source = ["weatherflow4py", "*/site-packages"]
tests = ["tests", "*/tests"]