-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (45 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
55 lines (45 loc) · 1.22 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
[tool.poetry]
name = "eps-assist-me"
version = "0.0.1-alpha"
description = "EPS Assist Me"
authors = [
"EPS Team"
]
readme = "README.md"
repository = "https://github.com/NHSDigital/eps-assist-me"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
[tool.poetry.scripts]
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.2"
pre-commit = "^4.3.0"
cfn-lint = "^1.39.1"
black = "^25.9.0"
flake8 = "^7.3.0"
jinja2 = "^3.1.6"
pip-licenses = "^5.0.0"
click = "^8.3.0"
rich = "^14.1.0"
pytest-mock = "^3.15.1"
pytest-cov = "^7.0.0"
moto = {extras = ["ssm"], version = "^5.1.12"}
[tool.poetry.group.slackBotFunction.dependencies]
slack-bolt = "^1.25.0"
slack-sdk = "^3.36.0"
boto3 = "^1.40.34"
requests = "^2.32.5"
opensearch-py = "^3.0.0"
urllib3 = "^2.5.0"
aws-lambda-powertools = "^3.22.0"
boto3-stubs = {extras = ["bedrock-agent", "bedrock-agent-runtime", "bedrock-runtime", "cloudformation", "dynamodb", "lambda"], version = "^1.40.54"}
[tool.poetry.group.syncKnowledgeBaseFunction.dependencies]
boto3 = "^1.40.34"
aws-lambda-powertools = "^3.22.0"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"