-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.02 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
[tool.poetry]
name = "custom_boto3_init"
version = "3.0.5"
authors = [ "Amazon Web Services" ]
description = "Initialize boto config for AWS Python SDK with custom configuration"
packages = [
{ include = "*.py" },
{ include = "*.toml" },
{ include = "*.lock" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: Apache-2.0",
]
license = "Apache-2.0"
[tool.poetry.dependencies]
aws-lambda-powertools = "3.3.0"
aws-xray-sdk = "2.14.0"
python = "^3.13"
pyjwt = "^2.10.1"
cryptography = { version = "^44.0.1", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'" }
[tool.poetry.group.test.dependencies]
coverage = "7.6.4"
pytest = "8.3.4"
pytest-cov = "6.0.0"
mock = "5.1.0"
urllib3="2.5.0"
boto3-layer = { path = "../aws_boto3/", develop = true }
[tool.black]
line-length = 120
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 120
profile = "black"
[build-system]
requires = [ "poetry-core>=1.9.0" ]
build-backend = "poetry.core.masonry.api"