-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (36 loc) · 986 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
[tool.poetry]
name = "huum"
version = "0.7.12"
description = "Python library for Huum saunas"
authors = ["Frank Wickström <[email protected]>"]
repository = "https://github.com/frwickst/pyhuum"
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = ">3.9"
aiohttp = {extras = ["speedups"], version = "^3.9.5"}
mashumaro = "^3.13.1"
[tool.poetry.extras]
aiohttp = ["aiohttp"]
[tool.poetry.dev-dependencies]
ruff = "^0.5.1"
mypy = "^1.10.1"
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.coverage.run]
source = ["huum", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.ruff]
line-length = 104
lint.select = ["E4", "E7", "E9", "F", "G", "T20", "TRY004", "TRY302", "TRY400", "B", "ERA", "PIE", "I"]
lint.ignore = ["E203", "E501", "B007", "B026", "B904", "PIE808"]