-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.73 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
[tool.poetry]
name = "nrlf-api"
version = "1.0.0"
description = ""
authors = ["NHS Digital"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
aws-lambda-powertools = "^2.19.0"
nhs-number = "==1.3.4"
pydantic = "==1.10.10"
nrlf-lambda-pipeline = {git = "https://github.com/NHSDigital/nrlf-lambda-pipeline.git", tag = "v0.4.0"}
pytest = "^7.4.0"
boto3 = "^1.28.30"
pyjwt = "^2.8.0"
cryptography = "^41.0.1"
more-itertools = "^9.0.0"
typing-extensions = "^4.7.1"
requests = "^2.31.0"
jsonschema = {version = "4.17.*", extras = ["format"]}
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
sh = "^2.0.4"
awscli = "^1.27.165"
moto = "^4.1.13"
behave = "^1.2.6"
datamodel-code-generator = "^0.21.2"
pyyaml = "^5.4"
pre-commit = "^3.3.3"
flake8 = "^6.0.0"
flake8-print = "^5.0.0"
black = "^23.7.0"
pyhcl = "^0.4.4"
requests = "^2.28.1"
boto3 = "^1.26.3"
build-scripts = { path = "./scripts/build_scripts/", develop = true }
nrlf = { path = "./layer/nrlf/", develop = true }
lambda-utils = { path = "./layer/lambda_utils/", develop = true }
helpers = { path = "./helpers/", develop = true }
fire = "^0.5.0"
cookiecutter = "^2.2.3"
gherkin-official = "^24.1.0"
ez-setup = "^0.9"
pygments = "^2.14.0"
atlassian-python-api = "^3.39.0"
hypothesis = "^6.81.2"
nrlf-converter = {url = "https://github.com/NHSDigital/nrlf-converter/releases/download/0.0.8/nrlf_converter-0.0.8-py3-none-any.whl"}
[tool.poetry.group.legacy]
optional = true
[tool.poetry.group.legacy.dependencies]
libffx = "0.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.sqlfluff.core]
dialect = "postgres"
[tool.sqlfluff.rules.capitalisation.identifiers]
capitalisation_policy = "consistent"