-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (57 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
70 lines (57 loc) · 1.47 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
70
[project]
python = "^3.12"
name = "electronic-prescription-service-release-notes"
[tool.poetry]
version = "0.0.1-alpha"
description = "Prescriptions API Definitions"
license = "MIT"
authors = [
"EPS Team"
]
readme = "README.md"
repository = "https://github.com/NHSDigital/electronic-prescription-service-release-notes"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
atlassian-python-api = "4.0.7"
pygithub = "^2.9.0"
aws-lambda-powertools = "^3.28.0"
fastjsonschema = "^2.21.2"
boto3 = "^1.42.91"
[tool.poetry.group.release-notes.dependencies]
python = "^3.12"
atlassian-python-api = "4.0.7"
pygithub = "^2.9.0"
aws-lambda-powertools = "^3.28.0"
fastjsonschema = "^2.21.2"
[tool.poetry.group.mark-released.dependencies]
python = "^3.12"
atlassian-python-api = "4.0.7"
aws-lambda-powertools = "^3.28.0"
fastjsonschema = "^2.21.2"
[tool.poetry.group.release-cut.dependencies]
python = "^3.12"
atlassian-python-api = "4.0.7"
aws-lambda-powertools = "^3.28.0"
fastjsonschema = "^2.21.2"
[tool.poetry.scripts]
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
flake8 = "^7.3.0"
pre-commit = "^4.5.1"
semver = "^3.0.4"
awscliv2 = "^2.3.1"
gitpython = "^3.1.47"
coverage = "^7.13.5"
[tool.coverage.run]
branch = true
relative_files = true
[tool.coverage.report]
show_missing = true
[tool.coverage.xml]
output = "coverage/coverage.xml"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"