-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
38 lines (33 loc) · 1.06 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
[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.4.1"
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Framework :: Pytest" ,
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'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',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
dependencies = ["pytest>=7.0.0"]
[project.urls]
Home = "https://github.com/okken/pytest-check"
[project.entry-points.pytest11]
check = "pytest_check.plugin"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "pytest_check"
[tool.flit.sdist]
include = ["changelog.md", "examples", "tests", "tox.ini"]