-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
77 lines (68 loc) · 1.62 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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pytest-reserial"
authors = [{name = "Alexander Bessman", email = "[email protected]"}]
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"pytest",
"pyserial",
]
classifiers = [
"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",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
]
keywords = [
"serial",
"testing",
"logging",
"mocking",
"patching",
"stubbing",
"record",
"replay",
]
[project.urls]
Home = "https://github.com/bessman/pytest-reserial"
[project.entry-points."pytest11"]
reserial = "pytest_reserial.reserial"
[project.optional-dependencies]
test = [
"coverage",
]
dev = [
"black",
"isort",
"mypy",
"ruff",
"tox",
]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D203", # one-blank-line-before-class
"D213", # multi-line-summary-second-line
"G004", # logging-f-string
"N818", # error-suffix-on-exception-name
"S101", # assert
"ANN101", # missing-type-self
"PT004", # pytest-missing-fixture-name-underscore
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"**/{tests,docs}/*" = ["ALL"]