This repository was archived by the owner on Feb 3, 2022. It is now read-only.
forked from CrossNox/m2r2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.5 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx_mdinclude"
authors = [
{name = "Hiroyuki Takagi", email = "miyako.dev@gmail.com"},
{name = "CrossNox", email = "ijmermet+m2r2@gmail.com"},
{name = "John Reese", email = "john@noswap.com"},
]
maintainers = [
{name = "John Reese", email = "john@noswap.com"},
]
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"mistune >=0.8,<1.0",
"docutils >=0.15,<1.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Text Processing",
]
keywords = ["Markdown", "reStructuredText", "sphinx-extension"]
dynamic = ["version", "description"]
[project.urls]
Github = "https://github.com/jreese/m2r2"
[tool.attribution]
name = "sphinx-mdinclude"
package = "sphinx_mdinclude"
signed_tags = true
version_file = true
[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.6"
# strict = true
ignore_missing_imports = true