-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (101 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
110 lines (101 loc) · 1.86 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
[project]
name = "robotframework-schemathesislibrary"
version = "1.2.0"
description = "Robot Framework SchemathesisLibrary to automatically create test cases from API specifications."
authors = [
{ name="Tatu Aalto", email="aalto.tatu@gmail.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10.1"
keywords = ["Robot Framework", "Schemathesis", "API Testing", "Test Automation"]
dependencies = [
"robotframework>=7.2.2",
"robotframework-datadriver>=1.11.2",
"robotframework-pythonlibcore>=4.4.1",
"schemathesis>=4.7.0",
]
[dependency-groups]
dev = [
"fastapi[standard]>=0.123.10",
"invoke>=2.2.1",
"mypy>=1.19.0",
"pytest>=9.0.1",
"requests>=2.32.5",
"robotframework-robocop>=6.13.0",
"ruff==0.14.9",
"types-requests>=2.32.4.20250913",
]
[tool.semantic_release.settings]
allow_zero_version = true
[tool.robocop.format]
overwrite = true
color = false
diff = false
configure = [
"OrderTags.enabled=True",
"NormalizeAssignments.equal_sign_type=space_and_equal_sign",
"RenameKeywords.enabled=True",
"RenameTestCases.enabled=True",
"RenameVariables.enabled=True",
"ReplaceWithVAR.enabled=True",
]
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = [
"FAST",
"ANN",
"ASYNC",
"S",
"BLE",
"FBT",
"B",
"A",
"C4",
"T10",
"EXE",
"FIX",
"ISC",
"ICN",
"LOG",
"PIE",
"PYI",
"PT",
"Q",
"RSE",
"RET",
"SIM",
"SLOT",
"TID",
"TC",
"ARG",
"PTH",
"FLY",
"I",
"C90",
"NPY",
"PD",
"N",
"PERF",
"E",
"W",
"F",
"PL",
"UP",
"FURB",
"RUF",
"TRY"
]
ignore = [
"ANN401",
"E501",
"TRY003",
"N999"
]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.10"
files = "src/SchemathesisLibrary"