-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
67 lines (56 loc) · 1.67 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
[project]
authors = [{ name = "Gandi", email = "[email protected]" }]
classifiers = [
"Framework :: Pyramid",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
]
description = "Pyramid Plugin for prometheus integration on multiprocess wsgi server"
license = { text = "BSD-derived (http://www.repoze.org/LICENSE.txt)" }
name = "gandi-pyramid-prometheus"
readme = "README.rst"
requires-python = ">=3.7"
version = "0.6.3"
dependencies = ["pyramid >1.10,<3", "prometheus-client >= 0.17,<1"]
[tool.pdm.build]
includes = ["src", "CHANGELOG.rst"]
excludes = ["tests"]
[project.urls]
Homepage = "https://github.com/gandi/gandi-pyramid-prometheus"
Repository = "https://github.com/gandi/gandi-pyramid-prometheus.git"
Issues = "https://github.com/gandi/gandi-pyramid-prometheus/issues"
Changelog = "https://github.com/Gandi/gandi-pyramid-prometheus/blob/master/CHANGES.rst"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"webtest",
"zope.interface",
]
[tool.uv]
default-groups = []
[tool.ruff]
line-length = 88
target-version = "py37"
[tool.ruff.lint]
select = [
"B", # bug bear security warning
"I", # isort import order
"F", # pyflakes
"UP", # alter when better syntax is available
"RUF", # the ruff developper's own rules
]
ignore = ["RUF012", "RUF022"]
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
"except ImportError:",
"\\s+\\.\\.\\.$",
"# coverage: ignore",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"