-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.44 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
[project]
name = "tovald"
version = "0.1.6"
description = "Publish rich markdown documentation to Confluence"
readme = "README.md"
authors = [
{name="Charles SENGES", email="charles.senges.io+github@protonmail.com"}
]
license = {text = "GNU GPLv3+"}
requires-python = ">=3.12"
dependencies = [
"myst-parser==4.0",
"sphinx==8.1",
"sphinx-toolbox==3.8",
"sphinxcontrib-confluencebuilder==2.8",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[project.scripts]
tovald = "tovald.main:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # missing-trailing-comma (Conflicts with formatter)
"D203", # one-blank-line-before-class (Conflicts with D211)
"D213", # multi-line-summary-first-line (Conflicts with D212)
"ISC001", # single-line-implicit-string-concatenation (Conflicts with formatter)
"T201", # print
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101", # assert
"INP001", # implicit-namespace-package
"SIM110", # reimplemented-builtin
]
[tool.setuptools]
license-files = []
[tool.setuptools.package-data]
tovald = [
"static/*",
]
[tool.uv]
dev-dependencies = [
"black",
"pre-commit",
"pytest-mock>=3.14.0",
"pytest>=8.3.3",
"ruff",
"yamllint",
]