forked from mozilla-platform-ops/monopacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 822 Bytes
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
[tool.poetry]
name = "monopacker"
version = "0.1.0"
description = "builds taskcluster worker images for AWS and GCP using packer"
authors = ["Miles Crabill <mcrabill@mozilla.com>", "Dustin J. Mitchell <dustin@mozilla.com>"]
maintainers = ["Taskcluster Team <tools-taskcluster@lists.mozilla.org>",
"Release SRE <relops@mozilla.com>",]
license = "MPL 2.0"
readme = "README.md"
keywords = ["packer", "templating"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
ruamel-yaml = "^0.16.10"
jinja2 = "^2.11.3"
click = "^7.0"
markupsafe = "2.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pyfakefs = "^5.1.0"
pytest-watch = "^4.2.0"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
monopacker = "monopacker.main:main"