-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.45 KB
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
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Robpol86.com"
version = "2026.3.3.64345"
description = "My personal website."
readme = "README.md"
authors = [{name = "Robpol86", email = "robpol86@gmail.com"}]
license = "BSD-2-Clause"
classifiers = [
"Private :: Do Not Upload",
]
requires-python = ">=3.14"
dependencies = [
"ablog",
"myst-parser[linkify]",
"sphinx",
"sphinx-book-theme",
"sphinx-copybutton",
"sphinx-notfound-page",
"sphinx-sitemap",
"sphinx-thumb-image",
"sphinxcontrib-youtube",
"sphinxext-opengraph",
]
[project.urls]
repository = "https://github.com/Robpol86/robpol86.com"
[tool.hatch.build.targets.sdist]
include = ["robpol86_com"]
[tool.hatch.build.targets.wheel]
include = ["robpol86_com"]
[dependency-groups]
dev = [
# Docs.
"sphinx-autobuild",
# Linters.
"ruff",
# Tests.
"coverage[toml]",
"pytest",
"pytest-cov",
"pytest-icdiff",
]
[tool.coverage.report]
exclude_lines = [
"^\\s*from",
"^\\s*import",
]
fail_under = "${COVERAGE_FAIL_UNDER-0}"
[tool.coverage.run]
branch = true
[tool.pytest.ini_options]
addopts = "--cov-report=term-missing --durations=15 --showlocals --verbose --verbose"
log_level = "DEBUG"
[tool.ruff]
line-length = 125
[tool.ruff.lint]
select = ["D", "E", "F", "I", "N", "PLR", "S"]
extend-select = ["E501"]
ignore = ["D203", "D213"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101", "S607"]