-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (32 loc) · 901 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "aws-cdk-multiple-experiments"
version = "1.0.0"
description = "Multiple AWS CDK experiments for fun PoCs and validations"
authors = ["Santiago Garcia Arango <san99tiago@gmail.com>"]
license = "Apache"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
aws-cdk-lib = "2.165.0"
constructs = ">=10.0.0,<11.0.0"
cfnresponse = "^1.1.2"
pandas = "^2.1.4"
[tool.poetry.group.dev.dependencies]
aws-lambda-powertools = { extras = ["all"], version = "^2.22.0" }
poethepoet = "^0.20.0"
pytest = "^7.3.2"
pytest-mock = "^3.11.1"
coverage = "^7.2.7"
boto3 = "^1.28.22"
[tool.pytest.ini_options]
minversion = "6.0"
pythonpath = ["sns_topic_organization_level"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["src", "cdk"]
omit = ["**/__init__.py"]
[tool.coverage.report]
show_missing = false