-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
78 lines (69 loc) · 1.82 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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx_mdinclude"
authors = [
{name = "Hiroyuki Takagi", email = "[email protected]"},
{name = "CrossNox", email = "[email protected]"},
{name = "Amethyst Reese", email = "[email protected]"},
]
maintainers = [
{name = "Amethyst Reese", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Text Processing",
]
keywords = ["Markdown", "reStructuredText", "sphinx-extension"]
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"mistune >=3.0,<4.0",
"docutils >=0.19,<1.0",
"pygments >= 2.8",
"sphinx >= 6",
]
[project.optional-dependencies]
dev = [
"docutils==0.20.1; python_version < '3.9'",
"docutils==0.21.2; python_version >= '3.9'",
"mistune==3.0.2",
"attribution==1.7.1",
"black==24.4.2",
"coverage==7.5.1",
"flake8==7.0.0",
"flit==3.9.0",
"mypy==1.10.0",
"sphinx==7.1.2; python_version < '3.9'",
"sphinx==7.3.7; python_version >= '3.9'",
"ufmt==2.5.1",
"usort==1.0.8.post1",
]
[project.urls]
Github = "https://github.com/omnilib/sphinx-mdinclude"
[tool.attribution]
name = "sphinx-mdinclude"
package = "sphinx_mdinclude"
signed_tags = true
version_file = true
ignored_authors = ["dependabot"]
[tool.coverage.run]
branch = true
include = ["sphinx_mdinclude/*"]
omit = ["sphinx_mdinclude/tests/*"]
[tool.coverage.report]
fail_under = 50
precision = 1
show_missing = true
skip_covered = true
[tool.mypy]
python_version = "3.8"
strict = true
ignore_missing_imports = true
disallow_untyped_calls = false