-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.49 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pipeline-migration-tool"
requires-python = ">=3.12"
authors = [
{name = "Konflux Build Team"},
]
description = "Pipeline migration tool for Konflux CI."
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["pipeline", "migration", "konflux", "ci"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dynamic = ["version"]
dependencies = [
"requests==2.32.3",
"ruamel.yaml==0.18.6",
"oras==0.2.25",
"jsonschema==4.23.0",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"responses",
"tox",
]
[project.urls]
Homepage = "https://github.com/konflux-ci/pipeline-migration-tool"
Documentation = "https://github.com/konflux-ci/pipeline-migration-tool/blob/main/README.md"
Issues = "https://github.com/konflux-ci/pipeline-migration-tool/issues"
[project.scripts]
pipeline-migration-tool = "pipeline_migration.cli:entry_point"
[tool.setuptools.dynamic]
version = {attr = "pipeline_migration.__version__"}
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
skip_covered = true
omit = [
"tests/*"
]
[tool.mypy]
ignore_missing_imports = true
namespace_packages = true
explicit_package_bases = true