-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (69 loc) · 2 KB
/
pyproject.toml
File metadata and controls
84 lines (69 loc) · 2 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
[project]
name = "robotframework-cache"
version = "1.1.0"
description = "Robot Framework libary for caching values across tests and test runs"
readme = "README.md"
authors = [{ name = "Sander van Beek" }]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Development Status :: 5 - Production/Stable",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = ["robotframework (>=5.0.1)", "robotframework-pabot (>=2.2.0)"]
[dependency-groups]
dev = [
"ruff (>=0.9.1,<0.10.0)",
"robotframework-robocop (>=7.0.0,<8.0.0)",
"robotframework-faker (>=5.0.0)",
"invoke (>=2.2.1)",
# Required for faker <6.0.0
"setuptools (>=80.0.0,<81.0.0)",
]
[tool.uv.build-backend]
module-name = "CacheLibrary"
[project.urls]
Homepage = "https://github.com/Lakitna/robotframework-cache"
Repository = "https://github.com/Lakitna/robotframework-cache"
[build-system]
requires = ["uv_build>=0.10.8,<0.11.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
norecursedirs = ['robot', 'src', 'test/projects']
python_files = ['test/**/*.py']
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"FIX", # flake8-fixme. Superseeded by TD
# Ruleset: flake8-annotations
"ANN201",
# Ruleset: pydocstyle
# Docstring presence
"D100",
"D107", # Prefer class docstring over __init__ docstring
# Docstring contents
"D200",
"D203",
"D212", # conflicts with D213
"D400",
"D415",
# Ruleset: tryceratops
"TRY003",
# Ruleset: flake8-todos
"TD002", # Use issue code instead
# Ruleset: perflint
"PERF401", # Readability > micro performance
# Ruleset: flake8-datetimez
"DTZ005", # Not relevant for this project
# Ruleset: pep8-naming
"N999", # Not always relevant for Robot Libraries
]
[tool.ruff.lint.per-file-ignores]
"test/**" = ['D101', 'D102', 'INP001']
"./tasks.py" = ['T201', 'D103']