-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.3 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
[project]
name = "pytest-check"
authors = [{ name = "Brian Okken" }]
readme = "README.md"
license = { file = "LICENSE.txt" }
description = "A pytest plugin that allows multiple failures per test."
version = "2.9.0"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
dependencies = [
"pytest >= 7.0.0",
"typing-extensions >= 4.12.2, < 5; python_version < '3.11'",
"packaging", # for version parsing, needed for pytest 7.3+ support
]
[project.urls]
Home = "https://github.com/okken/pytest-check"
[project.entry-points.pytest11]
check = "pytest_check.plugin"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = ["tox", "tox-uv", "build"]
[tool.ty.src]
exclude = ["examples/test_example_mypy_fail.py"]
[tool.ty.terminal]
error-on-warning = true