-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.05 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
[project]
name = "mkdocs-katex-ssr"
version = "1.1.1"
description = "A MkDocs plugin for server-side rendering of KaTeX math."
readme = "README.md"
authors = [
{ name = "RainPPR", email = "PPR2125773894@163.com" }
]
license = {text = "MIT"}
requires-python = ">=3.14"
dependencies = [
"mkdocs==1.6.1",
"beautifulsoup4>=4.14.3",
"lmdb>=1.7.5",
"cffi>=2.0.0",
]
[project.urls]
Homepage = "https://raineblog.dpdns.org/mkdocs-katex-ssr/"
Documentation = "https://raineblog.dpdns.org/mkdocs-katex-ssr/configuration/"
Repository = "https://github.com/raineblog/mkdocs-katex-ssr"
Issues = "https://github.com/raineblog/mkdocs-katex-ssr/issues"
[project.entry-points."mkdocs.plugins"]
katex-ssr = "mkdocs_katex_ssr.plugin:KatexSsrPlugin"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mkdocs_katex_ssr"]
[tool.hatch.build.targets.sdist]
include = ["mkdocs_katex_ssr", "README.md", "LICENSE*"]
[dependency-groups]
dev = [
"mkdocs-material>=9.7.3",
"pymdown-extensions>=10.21",
]