-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (29 loc) · 924 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pytest_bisect_tests"]
[project]
name = "pytest-bisect-tests"
version = "0.3.0"
authors = [{ name = "Maciej Gol", email = "suchar.kroolik1@gmail.com" }]
description = "Find tests leaking state and affecting other"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/maciej-gol/pytest-bisect-tests"
Issues = "https://github.com/maciej-gol/pytest-bisect-tests/issues"
[project.scripts]
pytest-bisect-tests = "pytest_bisect_tests.cli:main"
[project.entry-points.pytest11]
pytest-bisect-tests = "pytest_bisect_tests.pytest_plugin"
[tool.pytest.ini_options]
testpaths = [
"tests",
]