-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.56 KB
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
[project]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
description = "Patternfly5 widget library for Widgetastic."
dynamic = ["version"]
keywords = ["widgetastic", "patternfly", "patternfly5"]
license = {file = "LICENSE"}
maintainers = [
{name = "Nikhil Dhandre", email = "ndhandre@redhat.com"},
{name = "Egor Shamardin", email = "eshamard@redhat.com"},
{name = "Mike Shriver", email = "mshriver@redhat.com"},
]
name = "widgetastic.patternfly5"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"widgetastic.core>=2.0.0", # 2.x.x supports Playwright (1.x.x supports Selenium)
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-rerunfailures",
"pytest-timeout",
"codecov",
]
doc = ["sphinx"]
[project.urls]
repository = "https://github.com/RedHatQE/widgetastic.patternfly5"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[tool.hatch.build.targets.wheel]
packages = ["src/widgetastic_patternfly5"]
[tool.hatch.version]
source = "vcs"
raw-options.version_scheme = "calver-by-date"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["F", "I", "PL", "UP"]
extend-ignore = ["PLR2004", "PLE0643", "PLR0913"]