-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.2 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
[project]
name = "nonebot-plugin-batarot"
dynamic = ["version"]
description = "A nonebot2 plugin for Blue Archive Tarot."
authors = [{ name = "Perseus037", email = "[email protected]" }]
dependencies = [
"nonebot2>=2.1.1",
"pydantic>=1.10.13",
"nonebot-adapter-onebot>=2.3.1",
"nonebot-plugin-htmlrender>=0.2.2",
"nonebot-plugin-apscheduler>=0.3.0",
"nonebot-plugin-send-anything-anywhere>=0.4.0",
"aiohttp >=3.9.1",
]
requires-python = ">=3.8,<4.0"
readme = "README.md"
license = { text = "MIT" }
keywords = ["blue archive","tarot", "nonebot", "nonebot2", "bot", "qq"]
classifiers = [
"Natural Language :: Chinese (Simplified)",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Games/Entertainment",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
]
[project.urls]
homepage = "https://github.com/Perseus037/nonebot_plugin_batarot/"
[project.optional-dependencies]
menu = ["nonebot-plugin-PicMenu>=0.2"]
[tool.pdm.version]
source = "file"
path = "nonebot_plugin_batarot/__init__.py"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"