-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 1.65 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "robotframework-pythonlibcore"
dynamic = ["version"]
authors = [
{name = "Tatu Aalto", email = "aalto.tatu@gmail.com"},
]
description = "Tools to ease creating larger test libraries for Robot Framework using Python."
readme = "README.md"
license = "Apache-2.0"
keywords = ["robotframework", "testing", "testautomation", "library", "development"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework",
]
requires-python = ">=3.10, <4"
[project.urls]
Homepage = "https://github.com/robotframework/PythonLibCore"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "robotlibcore.__version__"}
[tool.ruff]
line-length = 120
target-version = "py310"
lint.fixable = ["ALL"]
lint.select = [
"F",
"E",
"W",
"C90",
"I",
"N",
"YTT",
"S",
"BLE",
"FBT",
"B",
"A",
"C4",
"T10",
"EM",
"EXE",
"ISC",
"ICN",
"G",
"PIE",
"PYI",
"Q",
"RSE",
"RET",
"SLF",
"SIM",
"TCH",
"INT",
"ARG",
"PTH",
"ERA",
"PL",
"PERF",
"RUF"
]
[tool.ruff.lint.per-file-ignores]
"utest/*" = ["S", "SLF", "B018", "PLR"]
[tool.ruff.lint.mccabe]
max-complexity = 9
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"