-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 914 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
[tool.poetry]
name = "sceptre-resolver-template"
version = "0.0.1"
packages = [{ include = "resolver" }]
readme = "README.md"
homepage = "https://github.com/Sceptre/sceptre-resolver-template"
repository = "https://github.com/Sceptre/sceptre-resolver-template"
authors = ["Sceptre <[email protected]>"]
description = "A Github template for Sceptre resolvers"
keywords = ["sceptre", "sceptre-resolver"]
license = "Apache-2.0"
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Console",
]
[tool.poetry.plugins."sceptre.resolvers"]
"custom" = "resolver.custom:Custom"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.1"
tox = "^3.23.0"
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
sceptre = "^4.0"
tox-gh-matrix = "^0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"