forked from SeraphicCorp/py-switchbot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (40 loc) · 946 Bytes
/
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
49
50
51
[tool.poetry]
name = "switchbot_api"
version = "2.2.1"
description = "An asynchronous library to use Switchbot API"
authors = ["Ravaka Razafimanantsoa <contact@ravaka.dev>"]
license = "MIT"
readme = "README.md"
packages = [{include = "switchbot_api"}]
repository = "https://github.com/SeraphicCorp/py-switchbot-api"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
flake8 = "^6.0.0"
black = ">=23.1,<25.0"
coverage = "^7.2.1"
parameterized = "^0.8.1"
isort = "^5.12.0"
mypy = "^1.4.1"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
check_untyped_defs = true
[tool.pytest.ini_options]
pythonpath = ["switchbot_api"]
[tool.coverage.run]
branch = true
omit = [
"*/test_*.py",
]
[tool.coverage.report]
skip_empty = true
show_missing = true
fail_under = 0
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"