-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 875 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
36
[build-system]
requires = ["flit_core >=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "pytest-report-extras"
version = "0.0.0rc0"
description = "Pytest plugin to enhance pytest-html and allure reports by adding comments, screenshots, webpage sources and attachments."
readme = "README.md"
#license = "MIT"
authors = [
{name = "Harmin Parra Rueda", email="[email protected]"},
]
requires-python = ">=3.10"
dependencies = [
'pytest >= 8.0.0',
'pyyaml >= 6.0.2',
]
classifiers = [
"Framework :: Pytest",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
keywords = [
"pytest",
"selenium",
"playwright",
"webtest",
"webtesting",
]
[project.entry-points.pytest11]
pytest_report_extras = "pytest_report_extras.plugin"