-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.34 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
63
64
65
[project]
name = "retasc"
version = "0.1.0"
description = "Plans product release work in Jira based on schedules in Product Pages"
authors = [
{name = "Red Hat, Inc. and others"}
]
license = {text = "GPL-3.0-or-later"}
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"opentelemetry-sdk>=1.35.0,<2",
"opentelemetry-instrumentation-flask>=0.56b0,<1",
"opentelemetry-instrumentation-requests>=0.56b0,<1",
"opentelemetry-exporter-otlp-proto-http>=1.35.0,<2",
"requests>=2.32.4,<3",
"urllib3>=2.3.0,<3",
"pydantic>=2.11.7,<3",
"atlassian-python-api>=4.0.7,<5",
"Jinja2>=3.1.6,<4",
"ruamel-yaml>=0.18.14,<0.20",
]
[project.urls]
Repository = "https://github.com/release-engineering/retasc"
[project.scripts]
retasc = "retasc.__main__:main"
[project.optional-dependencies]
dev = [
"requests-mock>=1.12.1,<2",
"pytest>=9.0.1,<10",
"pytest-cov>=7.0.0,<8",
]
types = [
"mypy>=1.18.2",
"pip>=25.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/retasc"]
[tool.ruff.lint]
extend-select = [
"C", # mccabe/complexity
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"FURB", # refurb
"PERF", # Perflint
]
[tool.ruff.lint.mccabe]
max-complexity = 6
[tool.coverage.report]
fail_under = 100
[tool.coverage.run]
branch = true