-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 873 Bytes
/
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
[project]
name = "tidocs"
dynamic = ["version"]
description = "A suite of utilities designed to streamline TiDB documentation workflows."
authors = [
{ name = "Aolin", email = "[email protected]" },
]
repository = "https://github.com/Oreoxmt/tidocs"
documentation = "https://github.com/Oreoxmt/tidocs/blob/main/README.md"
dependencies = [
"marimo>=0.9.20",
"platformdirs>=4.3.6",
"python-docx>=1.1.2",
"pyyaml>=6.0.2",
"hypercorn>=0.17.3",
"rich>=13.9.4"
]
scripts = { tidocs = "tidocs.cli:main" }
requires-python = ">=3.9"
readme = "README.md"
license = { text = "Apache-2.0" }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[dependency-groups]
dev = [
"pytest>=8.3.4",
]
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = ["src/tidocs/"]
[tool.pdm.version]
source = "scm"
write_to = "tidocs/VERSION"