-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.46 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
[project]
python = "^3.13"
name = "electronic-prescription-service-api-regression-tests"
[tool.poetry]
name = "electronic-prescription-service-api-regression-tests"
version = "0.1.0"
description = ""
authors = ["SeanSteberis <sean.steberis@airelogic.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
jsonschema = "^4.25.1"
requests = "^2.33.0"
assertpy = "^1.1"
behave = "1.2.6"
behave-cucumber-formatter = "^1.0.1"
allure-behave = "^2.15.3"
black = "^26.3.1"
semver = "^3.0.4"
gitpython = "^3.1.46"
flake8 = "^7.3.0"
pre-commit = "^4.5.1"
isort = "^8.0.1"
cryptography = "^46.0.7"
python-dateutil = "^2.9.0.post0"
python-dotenv = "^1.2.2"
requests-oauthlib = "^2.0.0"
nhs-number-generator = {git = "https://github.com/Iain-S/nhs_number_generator.git"}
pyright = "^1.1.407"
playwright = "^1.58.0"
jycm = "^1.5.0"
pyotp = "^2.9.0"
lxml = "5.4.0"
pytest-nhsd-apim = "^6.0.7"
boto3 = "^1.42.78"
aiofiles = "^25.1.0"
wheel = "^0.46.2"
numpy = "^2.4.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.5.1"
[tool.black]
line-length = 120
target-version = ['py313']
[tool.pyright]
include = ["features", "methods", "messages", "scripts", "pages", "utils"]
exclude = ["**/.*",
"**/__pycache__",
"**/venv",
"**/.venv",
"**/node_modules"
]
defineConstant = { DEBUG = true }
reportMissingImports = true
pythonVersion = "3.13"
pythonPlatform = "Linux"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"