-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.26 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
[project]
name = "graiax-shortcut"
description = "Utilities for Graia Framework Community."
authors = [
{name = "BlueGlassBlock", email = "[email protected]"},
{name = "RF-Tar-Railt", email = "[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8,<4.0"
dependencies = [
"graia-broadcast<1.0.0,>=0.18",
"creart~=0.2",
"graia-amnesia~=0.7.0",
"graia-scheduler>=0.0.8",
"graia-saya<0.1.0,>=0.0.17",
"typing-extensions>=4.4.0",
"pydantic~=1.8"
]
version = "0.3.0"
[project.urls]
Repository = "https://github.com/GraiaCommunity/Shortcut"
[project.optional-dependencies]
[tool.pdm.build]
package-dir = "src"
[tool.pdm.dev-dependencies]
dev = [
"black>=22.6.0",
"isort>=5.10.1",
"pre-commit~=3.0",
]
doc = [
"mkdocs-material>=8.0",
"mkdocstrings[python]>=0.18.0",
"mkdocs-gen-files>=0.3.0",
"mkdocs-literate-nav>=0.4.0",
"mkdocs-section-index>=0.3.0",
]
[tool.pdm.scripts]
view_ref = {shell = "mkdocs serve", help = "Start the dev server for API ref preview"}
post_install = "pre-commit install"
lint = "pre-commit run --all-files"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
atomic = true
filter_files = true
known_first_party = ["graiax.shortcut"]