-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
98 lines (86 loc) · 2.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.poetry]
name = "check-mkdocs"
version = "1.2.0"
description = "Simple check/command-line tool that parses, validates and loads configuration, builds the mkdocs project documentation, and serves it via a web server"
readme = "README.md"
authors = ["Rodrigo Gonzalez <[email protected]>"]
repository = "https://github.com/RodrigoGonzalez/check-mkdocs/"
homepage = "https://rodrigogonzalez.github.io/check-mkdocs/"
license = "MIT"
packages = [
{include = "check_mkdocs", from = "src"}
]
include = ["README.md", "LICENSE", "CHANGELOG.md", ".pre-commit-hooks.yaml"]
[tool.poetry.scripts]
check-mkdocs = "check_mkdocs.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
pyyaml = "^6.0.1"
mkdocs = "^1.4.0"
mkdocs-material = "^9.1.6"
mkdocstrings = {extras = ["all"], version = "^0.22.0"}
pymarkdown = "^0.1.4"
mkdocs-macros-plugin = "^1.0.4"
mkdocs-click = "^0.8.0"
mkdocs-jupyter = "^0.24.2"
mknotebooks = "^0.8.0"
mkdocs-monorepo-plugin = "^1.0.5"
mkdocs-pdf-export-plugin = "^0.5.10"
mkdocs-table-reader-plugin = "^2.0.1"
mkdocs-autolinks-plugin = "^0.7.1"
mkdocs-redirects = "^1.2.1"
mkdocs-exclude = "^1.0.2"
mkdocs-exclude-search = "^0.6.5"
[tool.poetry.group.dev.dependencies]
ipython = "^8.12.0"
commitizen = "^3.0.1"
pre-commit = "^3.2.2"
isort = "^5.12.0"
black = "^23.3.0"
autoflake = "^2.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
coverage = { version = "^7.3.0", extras = ["toml"] }
covdefaults = "^2.3.0"
pytest-mock = "^3.11.1"
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.2.0"
tag_format = "v$version"
version_type = "semver"
update_changelog_on_bump = true
version_files = [
"pyproject.toml:version",
"src/check_mkdocs/__init__.py:__version__",
]
changelog_file = "CHANGELOG.md"
[tool.isort]
profile = "black"
skip_glob = ["docs", "example_repos"]
line_length = 100
multi_line_output = 4
force_single_line = true
src_paths = ["src", "tests", "scripts"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
known_first_party = ["check_mkdocs"]
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.mypy_html_report
| \.venv
| _build
| build
| dist
| docs
| example_repos
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"