-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "sandbox"
version = "0.0.1-alpha"
description = "PDS API Sandbox"
package-mode = false
license = "MIT"
authors = [
"Laurence Pakenham-Smith <laurence.smith2@nhs.net>",
"Alex Hawdon <alex.hawdon1@nhs.net>",
"Tony Heap <tony.heap1@nhs.net>"
]
readme = 'README.md'
repository = "https://github.com/NHSDigital/personal-demographics-service-api"
homepage = "https://digital.nhs.uk/developer/api-catalogue/personal-demographics-service-fhir"
keywords = ["healthcare", "uk", "nhs", "demographics"]
# run-time dependencies
[tool.poetry.dependencies]
cryptography = "^46.0.5"
docopt = "^0.6.2"
flask = "^3.1.3"
jsonpath-rw = "^1.4.0"
locust = "^1.2"
polling2 = "^0.4.7"
python = "^3.13"
python-dateutil = "^2.8.1"
pyyaml = "^6.0.3"
requests = "^2.32.4"
semver = "^2.10.2"
# dev only dependencies (testing, linting etc.)
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
black = "^26.3.1"
aiohttp = "^3.13.4"
authlib = "^1.6.9"
pip-licenses = "^4.5.0"
gitpython = "^3.1.41"
glob2 = "^0.7"
jinja2 = "^3.1.6"
pytest = "^8.2.0"
pytest-asyncio = "^0.14.0"
pytest-bdd = "^8.1.0"
pytest_check = "^1.0.1"
pytest-docker = "^3.2.2"
pytest-nhsd-apim = "^5.0.0"
pytest-rerunfailures = "^13.0.0"
pycryptodome = "^3.19.1"
pyjwt = "^2.12.0"
selenium = "^4.0.0"
[tool.poetry.scripts]
[tool.pytest.ini_options]
markers = [
"retrieve_scenarios",
"search_scenarios",
"update_scenarios",
"related_person_scenarios",
"apmspii_832",
"apmspii_874",
"apmspii_921",
"smoke_test",
"asid_required"
]