forked from jaiveersinghNV/sphinx-markdown-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (65 loc) · 2.06 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
# sphinx-markdown-builder
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-markdown-builder"
version = "0.6.5"
description = "A Sphinx extension to add markdown generation support."
readme = "README.md"
authors = [{ name = "Liran Funaro", email = "liran.funaro@gmail.com" }]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["sphinx", "sphinx-extention", "markdown", "docs", "documentation", "builder"]
dependencies = ["sphinx>=2.2.0", "tabulate", "docutils"]
requires-python = ">=3.7"
[tool.poetry.plugins] # Optional super table
[tool.poetry.plugins."sphinx.builders"]
"markdown" = "sphinx_markdown_builder"
[project.optional-dependencies]
dev = [
"bumpver", "black", "isort", "flake8", "pylint", "pip-tools", "pytest", "pytest-cov", "coveralls",
"sphinx-needs", "sphinxcontrib-plantuml",
]
[project.urls]
Homepage = "https://github.com/liran-funaro/sphinx-markdown-builder"
[tool.bumpver]
current_version = "0.6.5"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
"current_version = \"{version}\"",
"version = \"{version}\"",
]
"README.md" = [
"sphinx-markdown-builder=={version}",
]
"LICENSE" = [
"Copyright (c) 2023-YYYY, Liran Funaro.",
]
"sphinx_markdown_builder/__init__.py" = [
"^__version__ = \"{version}\"$",
]
"tests/source/conf.py" = [
"^version = \"{version}\"$",
"Copyright (c) 2023-YYYY, Liran Funaro.",
]
"tests/expected/overrides-auto-summery.md" = [
"<meta name=\"version\" content=\"{version}\"/>",
"<meta name=\"copyright\" content=\"Copyright (c) 2023-YYYY, Liran Funaro.\"/>",
]
[tool.black]
line-length = 120
[tool.pylint.format]
max-line-length = 120
max-args = 6