generated from Sceptre/sceptre-template-handler-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (33 loc) · 990 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
[tool.poetry]
name = "sceptre-sam-handler"
version = "1.0.0"
packages = [{ include = "sam_handler" }]
readme = "README.md"
homepage = "https://github.com/Sceptre/sceptre-sam-handler"
repository = "https://github.com/Sceptre/sceptre-sam-handler"
authors = ["Sceptre <[email protected]>"]
description = "Packages and renders SAM templates for use"
keywords = ["sceptre", "sceptre-handler", "AWS", "serverless"]
license = "Apache-2.0"
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Console",
]
[tool.poetry.plugins."sceptre.template_handlers"]
"sam" = "sam_handler.handler:SAM"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.1"
tox = "^3.23.0"
pytest = "^7.4.3"
pytest-cov = "^4.0.0"
pyfakefs = "^5.0"
sceptre = "^4.0"
tox-gh-matrix = "^0.2"
[tool.poetry.extras]
sam = ["aws-sam-cli"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"