-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 1.05 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
[tool.poetry]
name = "pytest-mergify"
version = "0"
description = "Pytest plugin for Mergify"
authors = ["Julien Danjou <[email protected]>"]
license = "Apache"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10"
# We set this version explicitly to avoid breaking changes
pytest-opentelemetry = "1.0.1"
opentelemetry-exporter-otlp-proto-http = ">=1.25"
opentelemetry-sdk = ">=1.25"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.2"
mypy = "^1.13.0"
pytest = "^8.3.4"
poethepoet = "^0.31.1"
codespell = "^2.3.0"
yamllint = "^1.35.1"
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins.pytest11]
pytest_mergify = "pytest_mergify"
[tool.poe]
include = ["poe.toml"]
[tool.mypy]
strict = true
warn_unreachable = true
files = ["pytest_mergify", "tests"]
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"pytest_opentelemetry.*"
]
ignore_missing_imports = true
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
dirty = true
pattern = "default-unprefixed"