forked from konflux-ci/release-service-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (57 loc) · 1.16 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
60
61
62
[project]
name = "release-service-utils"
version = "0.1.0"
description = "Konflux Release Service Utils"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"GitPython>=3.1.40",
"PyYAML>=6.0.1",
"requests",
"requests-kerberos",
"jinja2",
"check-jsonschema",
"jsonschema>=4.23",
"jinja2-ansible-filters",
"packaging",
"packageurl-python",
"pubtools-content-gateway==0.5.4",
"pubtools-pulp==1.33.2",
"pubtools-exodus==1.5.2",
"pubtools-marketplacesvm==2.1.2",
"pubtools-sign==1.0.6",
"pubtools-pyxis==1.3.8",
"pulp-cli==0.36.3",
"diffused-lib==0.3.0",
"confluent-kafka",
]
[tool.black]
line-length = 95
[tool.pytest.ini_options]
pythonpath = [
".",
"integration-tests/lib",
"scripts/python/helpers",
"scripts/python/tasks/internal",
"utils",
"pubtools-pulp-wrapper",
"publish-to-cgw-wrapper",
]
[dependency-groups]
dev = [
"black>=25.11.0",
"pytest>=8.4.2",
"pytest-cov>=6.0",
]
[tool.coverage.run]
omit = [
"**/test_*",
"**/tests/*",
".github/*",
"ci/*",
"scripts/bash/*",
"templates/*",
"data/*",
]
[tool.coverage.report]
show_missing = true