-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (82 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (82 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "pytest-describe"
version = "3.2.0"
description = "Describe-style plugin for pytest"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Robin Pedersen", email = "robinpeder@gmail.com" },
]
maintainers = [
{ name = "Christoph Zwerschke", email = "cito@online.de" },
]
keywords = ["test", "unittest", "plugin", "describe"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"pytest>=7,<10",
]
[project.urls]
Homepage = "https://github.com/pytest-dev/pytest-describe"
Source = "https://github.com/pytest-dev/pytest-describe"
Tracker = "https://github.com/pytest-dev/pytest-describe/issues"
[project.entry-points."pytest11"]
pytest-describe = "pytest_describe.plugin"
[tool.uv.build-backend]
module-root = "src"
source-include = ["tox.ini", "test/**"]
[build-system]
requires = ["uv_build>=0.9.4,<0.10.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py310"
line-length = 88
src = ["src", "test"]
[tool.ruff.lint]
select = [
"E", # pycodestyle (errors)
"F", # Pyflakes
"W", # pycodestyle (warnings)
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"
skip-magic-trailing-comma = false
docstring-code-format = true
[tool.mypy]
python_version = "3.10"
strict = true
[tool.pytest.ini_options]
minversion = "7"
[tool.coverage.run]
branch = true
source = ["src/pytest_describe"]
[tool.coverage.report]
fail_under = 100
show_missing = true