generated from sinofseven/template-lambda-by-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 857 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
[tool.poetry]
name = "template-lambda-by-terraform"
version = "0.1.0"
description = ""
authors = ["sinofseven <em.s.00001@gmail.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
[tool.poetry.group.powertools.dependencies]
# arn:aws:lambda:ap-northeast-1:017000801446:layer:AWSLambdaPowertoolsPythonV3-python313-arm64:12
aws-lambda-powertools = {version = "3.10.0", extras = ["all"]}
[tool.poetry.group.base_layer.dependencies]
boto3 = "1.37.28"
aws-cloudwatch-logs-url = "1.0.3"
[tool.poetry.group.dev.dependencies]
ruff = "*"
pytest = "*"
freezegun = "*"
boto3-stubs = {version = "1.37.28", extras = ["events", "dynamodb", "ssm"]}
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:botocore.*"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"