-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (45 loc) · 1.51 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
[tool.poetry]
name = "nonebot-plugin-dg-lab-play"
version = "1.0.0"
description = "nonebot2 机器人插件 - 在群里和大家一起玩郊狼吧!"
authors = ["Ljzd-PRO <ljzd@office.ljzd-pro.asia>"]
readme = "README.md"
homepage = "https://dg-lab-play.readthedocs.io"
repository = "https://github.com/Ljzd-PRO/nonebot-plugin-dg-lab-play"
documentation = "https://dg-lab-play.readthedocs.io"
keywords = [
"nonebot", "nonebot2", "dg-lab", "dg-lab-v3", "chatbot", "dodo",
"feishu", "kaiheila", "onebot", "onebot11", "onebot12", "red", "telegram"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.9"
nonebot2 = ">=2.2.0"
pydglab-ws = "^1.1.0"
nonebot-plugin-send-anything-anywhere = "^0.6.1"
nonebot-plugin-alconna = "^0.45.4"
qrcode = {extras = ["pil"], version = "^7.4.2"}
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.22"
mkdocstrings = {version="^0.25.1", extras=["python"]}
mike = "^2.1.1"
[tool.poetry.group.test.dependencies]
flake8 = "^7.0.0"
[tool.poetry.group.dev.dependencies]
pydevd-pycharm = ">=232.10227.11,<243.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.test]
optional = true
[tool.poetry.group.dev]
optional = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"