generated from A-kirami/nonebot-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
38 lines (33 loc) · 969 Bytes
/
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-picstatus"
dynamic = ["version"]
description = "A NoneBot2 plugin generates a picture which shows the status of current device"
authors = [{ name = "student_2333", email = "[email protected]" }]
dependencies = [
"nonebot2>=2.3.3",
"nonebot-plugin-apscheduler>=0.5.0",
"nonebot-plugin-alconna>=0.52.0",
"nonebot-plugin-userinfo>=0.2.5",
"nonebot-plugin-htmlrender>=0.3.5",
"cookit[loguru,jinja,playwright,pydantic]>=0.8.0",
"psutil>=6.0.0",
"py-cpuinfo>=9.0.0",
"anyio>=4.4.0",
"httpx>=0.27.0",
"jinja2>=3.1.4",
"yarl>=1.9.4",
]
requires-python = ">=3.9,<4.0"
readme = "README.md"
license = { text = "MIT" }
[project.urls]
homepage = "https://github.com/lgc-NB2Dev/nonebot-plugin-picstatus"
[tool.pdm]
[tool.pdm.version]
source = "file"
path = "nonebot_plugin_picstatus/__init__.py"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"