-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (50 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
[project]
python = "^3.12"
[tool.poetry]
name = "electronic-prescription-service-clinical-prescription-tracker"
version = "0.0.1-alpha"
description = "Prescriptions API Definitions"
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]>",
"Jack Spagnoli <[email protected]>",
"Sean Steberis <[email protected]>",
"Thomas Merrington <[email protected]>",
"Jim Wild <[email protected]>",
"Toby Lawrence <[email protected]>",
"Kayalvizhi Rathinavelu <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/NHSDigital/electronic-prescription-service-clinical-prescription-tracker"
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.71"
argparse = "^1.4.0"
pre-commit = "^4.0.1"
pytest = "^8.3.3"
cfn-lint = "^1.20.1"
[tool.poetry.dev-dependencies]
pre-commit = "^4.0.1"
cfn-lint = "^1.20.1"
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"
[tool.poetry.scripts]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"