-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (62 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
71
72
73
[project]
name = "mkquartodocs"
version = "0.5.13"
description = ""
authors = [
{name = "J. Sebastian Paez", email = "jspaezp@users.noreply.github.com"},
]
readme = "README.md"
license = {text = "Apache 2.0"}
requires-python = ">=3.9,<3.14"
dependencies = [
"mkdocs>=1.6.1",
]
[project.entry-points."mkdocs.plugins"]
"mkquartodocs" = "mkquartodocs.plugin:MkQuartoDocsPlugin"
[dependency-groups]
lint = [
"black>=24.10.0",
"pylint>=2.16.2",
"ruff>=0.8.4",
]
check = [
"jupyter>=1.0.0",
"pytest-datadir>=1.3.1",
"pytest>=8.3.1",
"pytest-cov>=4.0.0",
"mdformat>=0.7.16",
"mdformat-black>=0.1.1",
"mdformat-config>=0.1.3",
"mdformat-beautysh>=0.1.1",
"mdformat_frontmatter>=2.0.8",
"build",
]
docs = [
"mkdocs-material>=9.5.49",
"mkdocs-autorefs>=1.1.0",
"mkdocstrings[python]>=0.25.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
target-version = ["py38"]
line-length = 88
[tool.isort]
profile = "black"
[tool.pydocstyle]
convention = "google"
add-ignore = "D102,D101,D100,D105,D107,D104"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v --cov=mkquartodocs"
doctest_plus = "enabled"
doctest_optionflags = "ELLIPSIS NORMALIZE_WHITESPACE"
testpaths = ["tests", "mkquartodocs"]
[tool.pydocstringformatter]
style = "numpydoc"
max-line-length = 88
[tool.pylint]
load-plugins = 'pylint.extensions.docparams'
[tool.pylint.format]
max-line-length = 88