-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
83 lines (75 loc) · 1.68 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
[project]
name = "pytest-tap"
version = "3.5"
description = "Test Anything Protocol (TAP) reporting plugin for pytest"
readme = "docs/releases.rst"
authors = [
{ name = "Matt Layman", email = "[email protected]" }
]
license = { text = "BSD" }
homepage = "https://github.com/python-tap/pytest-tap"
dependencies = [
"pytest>=3.0",
"tap.py>=3.2,<4.0"
]
requires-python = ">=3.9"
keywords = ["TAP", "unittest", "pytest"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing"
]
[project.entry-points.pytest11]
tap = "pytest_tap.plugin"
[dependency-groups]
dev = [
"pytest-tap",
"tox>=4.24.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/docs",
"/tests",
]
sources = ["src"]
[tool.hatch.build.targets.wheel]
sources = ["src"]
packages = ["pytest_tap"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]
[tool.uv.sources]
pytest-tap = { workspace = true }
[tool.ruff.lint]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bandit
"S",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
# bandit: Use of `assert` detected
"S101",
]