-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathpyproject.toml
More file actions
153 lines (139 loc) · 4.17 KB
/
pyproject.toml
File metadata and controls
153 lines (139 loc) · 4.17 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "myst-parser"
dynamic = ["version", "description"]
authors = [{name = "Chris Sewell", email = "chrisj_sewell@hotmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
]
keywords = [
"markdown",
"lexer",
"parser",
"development",
"docutils",
"sphinx",
]
requires-python = ">=3.11"
dependencies = [
"docutils>=0.20,<0.23",
"jinja2", # required for substitutions, but let sphinx choose version
"markdown-it-py~=4.0",
"mdit-py-plugins~=0.5",
"pyyaml",
"sphinx>=8,<10",
]
[project.urls]
Homepage = "https://github.com/executablebooks/MyST-Parser"
Documentation = "https://myst-parser.readthedocs.io"
[project.optional-dependencies]
code_style = ["pre-commit~=4.0"]
# for use with "linkify" extension
linkify = ["linkify-it-py~=2.0"]
# Note: This is only required for internal use
rtd = [
"sphinx>=8",
"ipython",
"sphinx-book-theme~=1.1",
"sphinx-design",
"sphinx-copybutton",
"sphinxext-rediraffe~=0.3.0",
# TODO this can uncommented once https://github.com/mgaitan/sphinxcontrib-mermaid/issues/109 is fixed
# "sphinxcontrib.mermaid~=0.7.1",
"sphinxext-opengraph~=0.13.0",
"sphinx-pyscript",
"sphinx-tippy>=0.4.3",
"sphinx-autodoc2~=0.5.0",
"sphinx-togglebutton",
]
testing = [
"beautifulsoup4",
"coverage[toml]",
"defusedxml", # required by sphinx 7.3 testing utils
"pytest>=9,<10",
"pytest-cov",
"pytest-regressions",
"pytest-param-files~=0.6.0",
"sphinx-pytest~=0.3.0",
"pygments<2.20", # TODO fix test regression with 2.19"
]
testing-docutils = [
"pygments",
"pytest>=9,<10",
"pytest-param-files~=0.6.0",
]
[dependency-groups]
mypy = [
"mypy==1.19.1",
"types-urllib3",
"sphinx~=8.2",
"markdown-it-py~=4.0",
"mdit-py-plugins~=0.5.0",
]
ruff = ["ruff==0.14.11"]
[project.scripts]
myst-anchors = "myst_parser.cli:print_anchors"
myst-inv = "myst_parser.inventory:inventory_cli"
myst-docutils-html = "myst_parser.parsers.docutils_:cli_html"
myst-docutils-html5 = "myst_parser.parsers.docutils_:cli_html5"
myst-docutils-demo = "myst_parser.parsers.docutils_:cli_html5_demo"
myst-docutils-latex = "myst_parser.parsers.docutils_:cli_latex"
myst-docutils-xml = "myst_parser.parsers.docutils_:cli_xml"
myst-docutils-pseudoxml = "myst_parser.parsers.docutils_:cli_pseudoxml"
[tool.flit.module]
name = "myst_parser"
[tool.flit.sdist]
exclude = [
"docs/",
"tests/",
]
[tool.ruff.lint]
extend-select = ["B", "C4", "FA", "FURB", "I", "ICN", "ISC", "N", "PERF", "PGH", "PIE", "RUF", "SIM", "UP"]
extend-ignore = ["ISC001", "RUF005", "RUF012"]
[tool.ruff.lint.per-file-ignores]
"myst_parser/parsers/docutils_.py" = ["FA"]
"myst_parser/config/main.py" = ["FA"]
[tool.mypy]
show_error_codes = true
check_untyped_defs = true
strict_equality = true
warn_unused_ignores = true
disallow_any_generics = true
[[tool.mypy.overrides]]
module = ["docutils.*", "yaml.*", "pygments.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
# shrink me
module = [
"myst_parser.config.dc_validators",
"myst_parser.config.main",
"myst_parser.inventory",
"myst_parser.parsers.directives",
"myst_parser.parsers.docutils_",
"myst_parser.parsers.parse_html",
]
disallow_any_generics = false
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*The default for the setting.*:FutureWarning",
"ignore:.*:PendingDeprecationWarning",
]
[tool.coverage.run]
omit = ["*/_docs.py"]