-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.27 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
[project]
name = "pytest-cleanslate"
dynamic = ["version"]
description = "Collects and executes pytest tests separately"
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"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",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X"
]
authors = [
{ name="Juan Altmayer Pizzorno", email="[email protected]" },
]
dependencies = [
"pytest",
"py",
"pytest-forked",
"tqdm",
]
[project.urls]
"Repository" = "https://github.com/plasma-umass/pytest_cleanslate"
[project.entry-points.pytest11]
pytest_cleanslate = "pytest_cleanslate.plugin"
[project.scripts]
cleanslate-reduce = "pytest_cleanslate.reduce:main"
[build-system]
requires = [
"setuptools>=61",
"wheel",
"pytest",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "pytest_cleanslate.__version__"}
[tool.pytest.ini_options]
required_plugins = [
'pytest-cleanslate', # must be installed to test
'pytest-asyncio', # required by tests
]