-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
141 lines (129 loc) · 3.17 KB
/
Copy pathpyproject.toml
File metadata and controls
141 lines (129 loc) · 3.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "testbench-defect-service"
authors = [{ name = "imbus AG", email = "support@imbus.de" }]
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
description = "A REST API service for the imbus testbench to manage defects."
requires-python = ">=3.10,<3.15"
keywords = [
"testbench",
"defect",
"testing",
"rest-api",
"jira",
"defect-management",
"test-automation",
]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"sanic>=25.12,<26.0",
"sanic-ext>=25.12,<26.0",
"pydantic>=2.12.5,<3.0.0",
"click>=8.3.1,<9.0.0",
"tomli>=2.4.0,<3.0.0",
"tomli-w>=1.2.0,<2.0.0",
"python-dotenv>=1.2.2,<2.0.0",
"questionary>=2.1.1,<3.0.0",
"javaproperties>=0.8.2,<1.0.0",
]
[project.optional-dependencies]
jira = ["jira>=3.10.5,<4.0.0", "beautifulsoup4>=4.14.3,<5.0.0"]
dev = [
"ruff>=0.9.6",
"pre-commit>=4.1.0",
"invoke>=2.2.0",
"mypy>=1.15.0",
"flit>=3.10.1",
"wheel>=0.45.1",
"robotframework >= 5.0.1, < 8.0.0",
"robotframework-assertion-engine >= 3.0.3, < 4.0.0",
"robotframework-robocop>=5.8.1",
"robotframework-tidy>=4.16.0",
"requests>=2.32.3",
"pytest>=9.0.2",
"types-pyinstaller>=6.19.0",
"types-requests>=2.32.4",
]
[project.urls]
Home = "https://github.com/imbus/testbench-defect-service"
Documentation = "https://imbus.github.io/testbench-ecosystem-documentation/testbench-defect-service/intro"
Source = "https://github.com/imbus/testbench-defect-service"
Changelog = "https://github.com/imbus/testbench-defect-service/blob/main/CHANGELOG.md"
[project.scripts]
testbench-defect-service = "testbench_defect_service.cli:cli"
[tool.mypy]
python_version = "3.10"
no_implicit_optional = true
strict_optional = true
warn_return_any = true
warn_no_return = true
warn_unreachable = true
pretty = true
files = ["src"]
exclude = "tests/"
[tool.ruff]
fix = false
target-version = "py310"
line-length = 100
exclude = ["__pycache__", ".venv", "tools", "model"]
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint]
unfixable = []
ignore = ["N815"]
select = [
"E",
"F",
"W",
"C90",
"I",
"N",
"B",
"PYI",
"PL",
"PTH",
"UP",
"A",
"C4",
"DTZ",
"ISC",
"ICN",
"INP",
"PIE",
"T20",
"PYI",
"PT",
"RSE",
"RET",
"SIM",
"RUF",
]
[tool.ruff.lint.per-file-ignores]
"tests/unit/**" = ["PLR2004"]
[tool.pytest.ini_options]
markers = ["unit: mark a test as a unit test"]
[tool.robocop]
exclude = ["ignore_me.robot"]
[tool.robocop.lint]
select = ["LEN04", "NAME02"]
ignore = ["DOC01", "DOC02", "DOC03", "LEN04"]
reports = ["rules_by_id", "scan_timer"]