-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (32 loc) · 929 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
[project]
requires-python = ">=3.9"
[tool.poetry]
name = "dvsa_mot_history"
version = "1.0.4"
description = "Python SDK for DVSA MOT History API"
authors = ["tigattack <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [
{include = "dvsa_mot_history"}
]
[tool.poetry.urls]
Repository = "https://github.com/tigattack/dvsa-mot-history-api-py"
Issues = "https://github.com/tigattack/dvsa-mot-history-api-py/issues"
Changelog = "https://github.com/tigattack/dvsa-mot-history-api-py/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.9"
msal = "^1.30.0"
aiohttp = "3.9.5"
pydantic = "^2.8.2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
ruff = "^0.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disable_error_code = "import-untyped"
[tool.ruff.lint]
extend-select = ["UP", "PLR"]
ignore = ["PLR2004"]