|
[tool.poetry] |
|
name = "do-nothing-lambda" |
|
version = "1.0.0" |
|
description = "Do Nothing Lambda" |
|
authors = ["JPMC <[email protected]>"] |
|
|
|
[[tool.poetry.source]] |
|
name = "artifacts" |
|
url = "https://artifacts-read.gkp.jpmchase.net/artifactory/api/pypi/pypi/simple" |
|
default = true |
|
|
|
[tool.poetry.dependencies] |
|
python = "^3.10" |
|
|
|
[tool.poetry.group.dev.dependencies] |
|
boto3 = "==1.34.102" |
|
botocore = "==1.34.102" |
|
|
|
[tool.poetry.group.test.dependencies] |
|
pytest = "==8.2.0" |
|
coverage = "==7.5.1" |
|
pytest-cov = "==5.0.0" |
|
|
|
[build-system] |
|
requires = ["poetry-core>=1.0.0"] |
|
build-backend = "poetry.core.masonry.api" |
|
|