-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.18 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
[tool.poetry]
name = "electronic-prescription-service-api-regression-tests"
version = "0.1.0"
description = ""
authors = ["SeanSteberis <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
jsonschema = "^4.22.0"
requests = "^2.32.1"
assertpy = "^1.1"
behave = "^1.2.6"
behave-cucumber-formatter = "^1.0.1"
lxml = "^4.9.1"
allure-behave = "^2.13.5"
black = "^24.4.2"
semver = "^3.0.2"
gitpython = "^3.1.43"
pip-licenses = "^5.0.0"
flake8 = "^7.0.0"
pre-commit = "^4.0.0"
isort = "^5.13.1"
cryptography = "^44.0.0"
python-dateutil = "^2.9.0.post0"
python-dotenv = "^1.0.1"
pytest-nhsd-apim = "^4.0.0"
requests-oauthlib = "^2.0.0"
nhs-number-generator = {git = "https://github.com/Iain-S/nhs_number_generator.git"}
pyright = "^1.1.389"
playwright = "^1.48.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.0"
[tool.pyright]
include = ["src"]
exclude = ["**/.*",
"**/__pycache__",
"**/venv",
"**/.venv",
"**/node_modules"
]
defineConstant = { DEBUG = true }
reportMissingImports = true
pythonVersion = "3.12"
pythonPlatform = "Linux"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"