-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (33 loc) · 1.11 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
[project]
name = "nonebot-plugin-random-stereotypes"
description = "基于Nonebot2的发病语录插件"
dynamic = ["version"]
authors = [
{ name = "Ikaros", email = "[email protected]" },
{ name = "student_2333", email = "[email protected]" },
]
requires-python = "<4.0,>=3.9"
dependencies = [
"nonebot2>=2.3.3",
"nonebot-plugin-alconna>=0.52.1",
"nonebot-plugin-userinfo>=0.2.6",
"nonebot-plugin-waiter>=0.7.1",
"cookit[pyd]>=0.8.1",
]
license = { text = "MIT" }
readme = "README.md"
[project.optional-dependencies]
meme = ["meme-generator>=0.1.8"]
meme-api = ["nonebot-plugin-memes-api>=0.4.11"]
[project.urls]
homepage = "https://github.com/lgc-NB2Dev/nonebot-plugin-random-stereotypes"
repository = "https://github.com/lgc-NB2Dev/nonebot-plugin-random-stereotypes"
documentation = "https://github.com/lgc-NB2Dev/nonebot-plugin-random-stereotypes/blob/master/README.md"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
includes = ["nonebot_plugin_random_stereotypes"]
[tool.pdm.version]
source = "file"
path = "nonebot_plugin_random_stereotypes/__init__.py"