-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.43 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
[project]
python = "^3.12"
[tool.poetry]
name = "eps-prescription-status-update-api"
version = "0.0.1-alpha"
description = "EPS Prescription Status Update API"
license = "MIT"
authors = [
"Matthew Popat <[email protected]>",
"Anthony Brown <[email protected]>",
"Kris Szlapa <[email protected]>",
"Phil Gee <[email protected]>",
"Adam Brown <[email protected]>",
"Jonathan Welch <[email protected]>",
"Natasa Fragkou <[email protected]>",
"Jack Spagnoli <[email protected]>",
"Tom Smith <[email protected]>",
"Sean Steberis <[email protected]>",
"Rizwan Mehmood <[email protected]>",
"Thomas Merrington <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/NHSDigital/eps-prescription-status-update-api"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
pyyaml = "^6.0"
docopt = "^0.6.2"
jsonpath-rw = "^1.4.0"
semver = "^3.0.2"
gitpython = "^3.1.42"
requests = "^2.32.3"
boto3 = "^1.35.83"
argparse = "^1.4.0"
pre-commit = "^4.0.1"
pytest = "^8.3.4"
cfn-lint = "^1.22.2"
pyjwt = {extras = ["crypto"], version = "^2.10.1"}
[tool.poetry.scripts]
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
cfn-lint = "^1.22.2"
black = "^24.10.0"
flake8 = "^7.1.1"
jinja2 = "^3.1.4"
pip-licenses = "^5.0.0"
click = "^8.1.7"
rich = "^13.9.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"