-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
71 lines (63 loc) · 1.55 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
[project]
name = "structlog-gcp"
description = "A structlog set of processors to output as Google Cloud Logging format"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = []
authors = [
{ name = "Jonathan Ballet", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"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",
]
dependencies = [
"structlog",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/multani/structlog-gcp#readme"
Issues = "https://github.com/multani/structlog-gcp/issues"
Source = "https://github.com/multani/structlog-gcp"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "structlog_gcp/__about__.py"
[tool.uv]
dev-dependencies = [
"build[uv]>=1.2.2",
"mypy>=1.11.2",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.6.6",
]
[tool.pytest.ini_options]
addopts = [
"--doctest-modules",
"--cov", "structlog_gcp",
"--cov-branch",
"--cov-report", "html",
"--cov-report", "term",
"--tb", "short",
"--verbose",
"--verbose",
]
testpaths = "tests"
[tool.coverage.run]
branch = true
parallel = true
omit = [
"structlog_gcp/__about__.py",
]
[tool.mypy]
strict = true
files = ["structlog_gcp", "tests"]
[tool.ruff.lint]
extend-select = ["I"]