-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.12 KB
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
52
[project]
name = "shared"
version = "0.1.0"
description = "Shared utilities for NHS Immunisation FHIR API"
authors = [
{name = "nhsdevws",email = "stephen.wates1@nhs.net"}
]
[tool.poetry]
name = "shared"
version = "0.1.0"
description = ""
authors = ["s.wates <stephen.wates1@nhs.net>"]
readme = "README.md"
packages = [
{include = "common", from = "src"}
]
[tool.poetry.dependencies]
python = "~3.11"
boto3 = "~1.40.45"
mypy-boto3-dynamodb = "^1.40.44"
moto = "~5.1.14"
python-stdnum = "^2.1"
coverage = "^7.10.7"
redis = "^4.6.0"
cache = "^1.0.3"
pyjwt = "^2.10.1"
[tool.poetry.group.dev.dependencies]
coverage = "^7.10.7"
ruff = "^0.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "B", "C4", "I", "UP"] # Common sensible defaults
ignore = ["E501"] # Ignore line-too-long if needed
[tool.ruff.lint.isort]
force-single-line = true # Optional: force single-line imports
[tool.ruff.format]
quote-style = "double" # Or "single", depending on your code style
indent-style = "space"
line-ending = "lf"