forked from MarketSquare/AssertionEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
116 lines (106 loc) · 2.29 KB
/
pyproject.toml
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
[tool.poetry]
name = "robotframework-assertion-engine"
version = "3.0.3"
description = "Generic way to create meaningful and easy to use assertions for the Robot Framework libraries."
authors = ["Tatu Aalto <[email protected]>"]
license = "Apache License 2.0"
readme = "README.rst"
homepage = "https://github.com/MarketSquare/AssertionEngine"
documentation = "https://github.com/MarketSquare/AssertionEngine/blob/master/README.rst"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Tool",
]
packages = [
{ include = "assertionengine", from="."}
]
include = ["assertionengine/py.typed"]
[tool.poetry.dependencies]
python = ">=3.9.5,<4.0"
robotframework = ">=5.0.1"
robotframework-pythonlibcore = "^3.0.0 || ^4.0.0"
[tool.poetry.group.dev.dependencies]
black = ">=24.10.0"
pytest = ">=7.4,<9.0"
approvaltests = ">=14.0.0,<15.0.0"
mypy = ">=1.12.1"
pytest-approvaltests = "^0.2.4"
invoke = "^2.2.0"
robotstatuschecker = "^3.0.1"
pre-commit = "^3.3.0"
empty-files = "^0.0.9"
robotframework-tidy = ">=4.14.0"
ruff = ">=0.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38']
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.ruff]
lint.unfixable = []
exclude = [
"__pycache__",
]
lint.ignore = [
"E501", # line too long
]
target-version = "py38"
lint.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.pylint]
max-args = 6
[tool.mypy]
[mypy]
python_version = 3.8
warn_unused_ignores = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "mypy-pytest.*"
ignore_missing_imports = true