-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
46 lines (39 loc) · 960 Bytes
/
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-structlog"
version = "1.1"
description = "Structured logging assertions"
readme = "README.md"
classifiers = [
"Framework :: Pytest",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.8"
dependencies = [
"pytest",
"structlog>=22.2.0",
]
[[project.authors]]
name = "Wim Glenn"
email = "[email protected]"
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://github.com/wimglenn/pytest-structlog"
[project.entry-points.pytest11]
pytest-structlog = "pytest_structlog"
[tool.setuptools]
include-package-data = true
[tool.mypy]
show_error_codes = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
strict_equality = true