-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 1017 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
44
[tool.poetry]
name = "dvsportal"
version = "1.3.2"
description = "Asynchronous Python client for the DVSPortal API as used by Dutch muncipalities for guest parking."
authors = ["ChessSpider <chessspider@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.9.3"
yarl = "^1.9.4"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.25.1"
pytest-cov = "^6.0.0"
pytest = "^8.3.4"
ruff = "^0.8.6"
mypy = "^1.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.11"
strict = false
ignore_missing_imports = true
disallow_untyped_defs = false
[tool.ruff]
target-version = "py311"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B"]
ignore = ["E501"] # Ignore line-length violations
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_test.py"]
addopts = "--tb=short --cov=dvsportal --cov-report=term-missing"
markers = [
"asyncio: mark a test as an asyncio test"
]