forked from nonebot/nb-autodoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 793 Bytes
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
[project]
name = "nb-autodoc"
version = "0.1.0"
description = "API doc generator for NoneBot."
authors = [
{name = "iyume", email = "[email protected]"},
]
dependencies = [
"attrs~=21.4",
"six>=1.6.1",
"click>=8.0.3",
]
requires-python = ">=3.7"
license = {text = "MIT"}
readme = "README.md"
keywords = ["nonebot", "autodoc"]
packages = [
{ include = "nb_autodoc" }
]
[project.urls]
homepage = "https://github.com/nonebot/nb-autodoc"
repository = "https://github.com/nonebot/nb-autodoc"
documentation = "https://github.com/nonebot/nb-autodoc/blob/master/README.md"
[project.scripts]
nb-autodoc = 'nb_autodoc.__main__:cli_main'
[tool.black]
line-length = 88
[tool.pdm]
excludes = ["test_pkg"]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"