-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.07 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
[project]
name = "nonebot-plugin-deer-pipe"
version = "0.4.2"
description = "A deer-pipe attendance plugin for nonebot2"
readme = "README.md"
authors = [
{ name = "SNRainiar", email = "rainiar@foxmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"aiosqlite>=0.20.0",
"nonebot-plugin-alconna>=0.54.0",
"nonebot-plugin-apscheduler>=0.5.0",
"nonebot-plugin-localstore>=0.7.2",
"nonebot-plugin-userinfo>=0.2.6",
"nonebot2>=2.4.0",
"pillow>=11.0.0",
"sqlmodel>=0.0.22",
]
license = {text = "AGPL-3.0-or-later"}
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.10",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://github.com/SamuNatsu/nonebot-plugin-deer-pipe"
Issues = "https://github.com/SamuNatsu/nonebot-plugin-deer-pipe/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"nonebot-adapter-onebot>=2.4.6",
"nonebot2[fastapi]>=2.4.0",
]