-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.32 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "infrastructure"
version = "0.1.0"
description = "Testing Farm Infrastructure."
authors = ["Miroslav Vadkerti <<mvadkert@redhat.com>>"]
license = "Apache-2.0"
packages = [
{ include = "setup" },
]
[tool.poetry.dependencies]
python = "~3.12"
awscli = "*"
ansible = "*"
ansible-core = "*"
ansible-lint = "*"
ansible-vault = "*"
jinja2 = "*"
cryptography = "*"
yq = "*"
boto3 = "*"
"ruamel.yaml" = "*"
tft-cli = "*"
markupsafe = "*"
pytest-gluetool = {git = "https://gitlab.com/testing-farm/pytest-gluetool.git", rev = "main"}
# TODO: gluetool *should* be deduced as a dependecy automatically from pytest-gluetool, but that does not happen.
# Locking without implicitily stating gluetool here doesn't actually propagate the module to the lockfile.
gluetool = "*"
aiosmtpd = "*"
yamllint = "*"
gitpython = "*"
fmf = "*"
typer = "*"
[tool.poetry.scripts]
terraform-cloud = "setup.terraform_cloud:main"
github = "setup.github:main"
gitlab = "setup.gitlab:main"
generate-artemis-pools = "setup.generate_pools:main"
[tool.poetry.dev-dependencies]
yamllint = "*"
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"container",
"compose",
"hardware",
"image-mode",
"pipeline",
"public",
"redhat",
"rhivos"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"