-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (80 loc) · 2.14 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "connecting-party-manager"
version = "2024.11.13"
description = "Repository for the Connecting Party Manager API and related services"
authors = ["NHS England"]
license = "LICENSE.md"
readme = "README.md"
packages = [
{ include = "api", from = "src" },
{ include = "domain", from = "src/layers" },
{ include = "event", from = "src/layers" },
{ include = "api_utils", from = "src/layers" },
{ include = "etl_utils", from = "src/layers" },
{ include = "sds", from = "src/layers" },
{ include = "builder", from = "scripts" },
]
[tool.poetry.dependencies]
python = "3.12.3"
pydantic = "1.10.18"
nhs-context-logging = "^0.6.8"
requests = "^2.31.0"
aws-lambda-powertools = "^2.26.0"
email-validator = "^2.1.0.post1"
smart-open = "^7.0.1"
urllib3 = "<3"
orjson = "^3.9.15"
attrs = "^24.2.0"
locust = "^2.29.1"
jsonschema = "^4.23.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.0"
black = "^24.1.1"
flake8 = "^7.0.0"
behave = "^1.2.6"
pytest = "^8.2.0"
pytest-custom-exit-code = "^0.3.0"
sh = "^2.0.6"
hypothesis = "^6.87.3"
aws-lambda-powertools = { extras = ["aws-sdk"], version = "^2.26.0" }
parse = "^1.19.1"
pytest-mock = "^3.12.0"
datamodel-code-generator = "^0.26.0"
pyyaml = "^6.0.1"
proxygen-cli = "^2.1.14"
moto = "^5.0.1"
boto3-stubs = { extras = [
"dynamodb",
"iam",
"lambda",
"s3",
"sqs",
"secretsmanager",
"stepfunctions",
], version = "^1.34.37" }
pytest-timeout = "^2.2.0"
lz4 = "^4.3.3"
[tool.poetry.group.local]
optional = true
[tool.poetry.group.local.dependencies]
ipython = "^8.17.2"
[tool.poetry.group.sds_update]
optional = true
[tool.poetry.group.sds_update.dependencies]
python-ldap = "^3.4.4"
lz4 = "^4.3.3"
[tool.poetry.group.sds.dependencies]
lz4 = "^4.3.3"
[tool.poetry.group.ci.dependencies]
pygithub = "^2.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
markers = ["unit", "integration", "smoke", "slow", "s3", "matrix"]
addopts = "--import-mode=importlib"
filterwarnings = ["ignore:from_type:", "ignore::DeprecationWarning:botocore"]
[tool.black]
line-length = 88