-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 1.06 KB
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "markdown-hide-code"
authors = [{ name = "Martin Staadecker", email = "machstg@gmail.com" }]
description = "Hide code blocks from the rendered markdown output, useful for running tests on your documentation."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
]
dependencies = ["Markdown", "pymdown-extensions>=8.0"]
[tool.ruff]
lint.select = ["E4", "E7", "E9", "F", "I", "W292", "W291"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=scripts"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[dependency-groups]
dev = ["pre-commit>=4.2.0", "pytest>=8.3.5", "ruff>=0.11.12"]
[project.urls]
repository = "https://github.com/staadecker/markdown-hide-code/"
Issues = "https://github.com/staadecker/markdown-hide-code/issues"