-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-xflaky"
description = "A simple plugin to use with pytest"
version = "1.0.3"
readme = "README.rst"
requires-python = ">=3.10"
authors = [{ name = "Tesorio", email = "[email protected]" }]
maintainers = [{ name = "Tesorio", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Framework :: Pytest",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pytest-json-report",
"pytest>=8.2.1",
"requests",
"tree-sitter",
"tree-sitter-python",
]
[project.urls]
Repository = "https://github.com/Tesorio/pytest-xflaky"
[project.entry-points.pytest11]
# https://docs.pytest.org/en/latest/how-to/writing_plugins.html#making-your-plugin-installable-by-others
xflaky = "pytest_xflaky.plugin"