-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.08 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
[build-system]
requires = ["flit_core >=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "pytest-selenium-auto"
version = "1.3.1rc"
description = "pytest plugin to automatically capture screenshots upon selenium webdriver events"
readme = "README.md"
#license = "MIT"
authors = [
{name = "Harmin Parra Rueda", email="[email protected]"},
]
requires-python = ">=3.8"
dependencies = [
'pytest >= 7.0.0',
'pytest-html >= 4.0.0',
'pytest-metadata >= 3.0.0',
'pyyaml >= 5.3.1',
'selenium >= 4.11.0',
]
classifiers = [
"Framework :: Pytest",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
keywords = [
"pytest",
"selenium",
"webtest",
"webtesting",
]
[project.entry-points.pytest11]
selenium_auto = "pytest_selenium_auto.plugin"
[project.urls]
Homepage = "https://pypi.org/project/pytest-selenium-auto"
Documentation = "https://pytest-selenium-auto.readthedocs.io/en/stable/"
Source = "https://github.com/harmin-parra/pytest-selenium-auto"