-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (46 loc) · 1.29 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
[tool.poetry]
name = "mkdocstrings-python-generator"
version = "0.1.0"
description = "Autogenerates a project's mkdocs reference documentation via mkdocstrings-python"
authors = ["Philip Couling <couling@gmail.com>"]
license = "MIT"
readme = "mkdocs/docs/index.md"
packages = [
{ include = "mkdocstrings_python_generator", from = "source" },
]
[tool.poetry.dependencies]
python = "^3.10"
mkdocstrings-python = "^1.0.0"
mkdocs = "^1.5.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
mypy = "^1.13.0"
[tool.poetry.group.dev.dependencies]
yapf = "^0.40.1"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.18"
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
style = "pep440"
pattern = "^v?(?P<base>\\d+(\\.\\d+)*)((?P<stage>(a|b|rc|post))(?P<revision>[0-9])+)?"
bump = true
[build-system]
requires = ["poetry-core>=1.3.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.pytest.ini_options]
testpaths = [
"source/tests/",
]
[tool.poetry.plugins."mkdocs.plugins"]
mkdocstrings-python-generator = "mkdocstrings_python_generator.plugin:GeneratePythonDocs"
[tool.mypy]
packages = [
"mkdocstrings_python_generator",
"tests",
]
check_untyped_defs = true
mypy_path = "source"
[tool.yapf]
based_on_style="pep8"
column_limit=120