-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 885 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (40 loc) · 885 Bytes
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
[project]
name = "psrt-ghsa-bot"
version = "0.1.0"
description = "GitHub bot for PSRT activities on GHSAs"
readme = "README.md"
requires-python = ">=3.14.0"
dependencies = [
"cvelib>=1.4.0",
"githubkit[auth-app]>=0.13.5",
"python-dotenv>=1.0.0",
"sentry-sdk>=2.22.0",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=6.0.0",
"pytest-sugar>=1.1.1",
"ruff>=0.14.3",
"ty>=0.0.1a25",
]
[build-system]
requires = ["uv_build>=0.9.6,<0.10.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py314"
src = ["src", "tests"]
line-length = 120
indent-width = 4
[tool.ruff.lint]
ignore = ["D203", "D213", "COM812"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.coverage.run]
source = ["psrt_ghsa_bot"]
branch = true
[tool.coverage.report]
show_missing = true