forked from frostming/marko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (68 loc) · 1.66 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
authors = [
{name = "Frost Ming", email = "[email protected]"},
]
dynamic = ["version"]
requires-python = ">=3.7"
license = {text = "MIT"}
dependencies = []
description = "A markdown parser with high extensibility."
name = "marko"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
homepage = "https://github.com/frostming/marko"
Documentation = "https://marko-py.readthedocs.io"
[project.optional-dependencies]
toc = ["python-slugify"]
codehilite = ["pygments"]
repr = ["objprint"]
[project.scripts]
marko = "marko.cli:main"
[tool.pdm]
plugins = [
"pdm-autoexport",
]
[tool.pdm.version]
source = "file"
path = "marko/__init__.py"
[tool.pdm.dev-dependencies]
benchmark = [
"commonmark>=0.9",
"markdown>=3.3",
"markdown-it-py>=2.0; python_version >= '3.7'",
"mistune>=2.0",
"mistletoe>=0.7",
]
dev = [
"pytest",
"pytest-cov",
"mypy>=0.950",
]
doc = [
"marko[toc]",
"sphinx>=5.3.0",
"shibuya>=2023.6.8",
]
[[tool.pdm.autoexport]]
filename = "docs/reqs.txt"
groups = ["doc"]
without-hashes = true
[tool.isort]
profile = "black"