-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.19 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
[tool.poetry]
name = "aws-lambda-python-cdk"
version = "0.1.0"
description = ""
authors = ["walmsles <2704782+walmsles@users.noreply.github.com>"]
readme = "README.md"
packages = [
{include = "services"},
{include = "cdk"},
{include = "tests"}
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
aws-cdk-lib = "^2.49.0"
constructs = "^10.1.144"
boto3 = "^1.25.4"
isort = "^5.10.1"
black = "^22.10.0"
flake8 = "^5.0.4"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
aws-cdk-aws-lambda-python-alpha = "^2.49.0a0"
mypy = "^0.982"
mypy-boto3-s3 = "^1.26.0.post1"
mypy-boto3 = "^1.26.0.post1"
boto3-stubs = "^1.26.0.post1"
pylint = "^2.15.5"
mypy-boto3-cloudformation = "^1.26.0.post1"
mypy-boto3-lambda = "^1.26.0.post1"
requests = "^2.28.1"
retry = "^0.9.2"
mypy-boto3-sqs = "^1.26.0.post1"
mypy-boto3-dynamodb = "^1.26.0.post1"
[tool.poetry.group.event_api.dependencies]
aws-lambda-powertools = "^2.0.0"
[tool.poetry.group.router.dependencies]
[tool.poetry.group.event_processor.dependencies]
aws-lambda-powertools = "^2.2.0"
mypy-boto3-dynamodb = "^1.26.0.post1"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"