-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
53 lines (47 loc) · 1.38 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
[project]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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.8"
dependencies = [
"widgetastic.core>=1.0.6",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-rerunfailures",
"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"]
strict-naming = false
[tool.hatch.version]
source = "vcs"
raw-options.version_scheme = "calver-by-date"