-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 938 Bytes
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
[project]
python = "^3.13"
name = "electronic-prescription-service-api"
[tool.poetry]
name = "electronic-prescription-service-api"
version = "0.0.1-alpha"
description = "Electronic Prescription Service API Definitions"
license = "MIT"
authors = [
"EPS Team <eps@team.team>"
]
readme = "README.md"
repository = "https://github.com/NHSDigital/electronic-prescription-service-api"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
semver = "^3.0.4"
gitpython = "^3.1.46"
requests = "^2.33.1"
argparse = "^1.4.0"
pre-commit = "^4.5.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.3.0"
black = "^26.3"
pytest = "^9.0.3"
pytest-cov = "^7.1.0"
[tool.poetry.group.create_prescription.dependencies]
boto3 = "^1.42.88"
aws-lambda-powertools = "^3.27.0"
[tool.poetry.scripts]
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"