-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (37 loc) · 1.1 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
[build-system]
requires = ["flit_core >=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "pytest-webtest-extras"
version = "1.3.1rc0"
description = "Pytest plugin to enhance pytest-html and allure reports of webtest projects by adding screenshots, comments and webpage sources."
readme = "README.md"
#license = "MIT"
authors = [
{name = "Harmin Parra Rueda", email="[email protected]"},
]
requires-python = ">=3.9"
dependencies = [
'pytest >= 7.0.0',
'pytest-html >= 4.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]
webtest_extras = "pytest_webtest_extras.plugin"
#[project.urls]
#Homepage = "https://pypi.org/project/pytest_webtest_extras"
#Documentation = "https://pytest_webtest_extras.readthedocs.io/en/stable/"
#Source = "https://github.com/harmin-parra/pytest_webtest_extras"