-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (35 loc) · 1.18 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
[project]
name = "nb-autodoc"
description = "Python API documentation tool supporting the modern PEPs and typing features."
authors = [{ name = "iyume", email = "[email protected]" }]
requires-python = ">=3.8"
dynamic = ["version"]
license = { text = "MIT" }
readme = "README.md"
keywords = ["nonebot", "autodoc", "apidoc", "documentation-tool", "markdown"]
dependencies = ["typing-extensions>=4.0", "click==8.*"]
[project.optional-dependencies]
[project.urls]
homepage = "https://github.com/nonebot/nb-autodoc"
repository = "https://github.com/nonebot/nb-autodoc"
[project.scripts]
nb-autodoc = "nb_autodoc.__main__:main"
[tool.black]
line-length = 88
target-version = ["py38"]
[tool.isort]
profile = "black"
extra_standard_library = ["typing_extensions"]
skip_gitignore = true
skip_glob = ["tests/analyzerdata/*"]
[tool.pyright]
reportTypedDictNotRequiredAccess = false
[tool.pdm]
version = { source = "file", path = "nb_autodoc/__init__.py" }
[tool.pdm.build]
# editable-backend = "editables" # break vscode interpreter searching
[tool.pdm.dev-dependencies]
dev = ["isort>=5.10.1", "black>=22.6.0", "pytest>=7.1.2"]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"