-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (35 loc) · 1017 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
[project]
requires-python = ">=3.9"
[tool.poetry]
name = "dvla_vehicle_enquiry_service"
version = "1.0.4"
description = "Python SDK for DVLA Vehicle Enquiry Service API"
authors = ["tigattack <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [
{include = "dvla_vehicle_enquiry_service"}
]
[tool.poetry.urls]
Repository = "https://github.com/tigattack/dvla-ves-api-py"
Issues = "https://github.com/tigattack/dvla-ves-api-py/issues"
Changelog = "https://github.com/tigattack/dvla-ves-api-py/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "3.9.5"
pydantic = "^2.8.2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
ruff = "^0.8.0"
pytest = "^8.3.2"
pytest-asyncio = "^0.25.0"
python-dateutil = "^2.9.0-post.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
disable_error_code = "import-untyped"
[tool.ruff.lint]
extend-select = ["UP", "PLR"]
ignore = ["PLR2004"]