-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
79 lines (69 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
description = "Making testing of UIs fantastic."
dynamic = ["version"]
keywords = ["widgetastic", "selenium"]
license = {file = "LICENSE"}
maintainers = [
{name = "Mike Shriver", email = "mshriver@redhat.com"},
{name = "Nikhil Dhandre", email = "ndhandre@redhat.com"},
{name = "Egor Shamardin", email = "eshamard@redhat.com"},
]
name = "widgetastic.core"
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"anytree >= 2.9.0",
"cached_property",
"selenium >= 4.0.0",
"selenium-smart-locator",
"wait_for",
]
[project.optional-dependencies]
dev = [
"podman",
"pre-commit",
"pytest",
"pytest-xdist",
"pytest-cov",
]
docs = ["sphinx"]
test = [
"podman",
"pytest",
"pytest-xdist",
"pytest-cov",
]
[project.urls]
repository = "https://github.com/RedHatQE/widgetastic.core"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[tool.hatch.build.targets.wheel]
packages = ["src/widgetastic"]
# https://github.com/RedHatQE/widgetastic.core/issues/230
strict-naming = false
[tool.hatch.build.targets.sdist]
packages = ["src/widgetastic"]
# https://github.com/RedHatQE/widgetastic.core/issues/230
strict-naming = false
[tool.hatch.version]
source = "vcs"
[tool.ruff]
line-length = 100
[tool.ruff.lint.isort]
split-on-trailing-comma = true