forked from zjkwdy/nonebot_plugin_weather_lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.09 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
[project]
name = "nonebot_plugin_weather_lite"
version = "0.0.1"
description = "使用wttr.in的天气查询 ,支持大部分wttr.in的用法。"
authors = [
{name = "rf_tar_railt", email = "[email protected]"},
{name = "zjkwdy", email = "[email protected]"},
]
dependencies = [
"nonebot2>=2.3.0",
"nonebot-plugin-alconna>=0.45.4"
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = ["pip", "nonebot2", "nonebot", "weather", "nonebot_plugin"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/zjkwdy/nonebot_plugin_weather_lite"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = ["src"]
[tool.pdm.dev-dependencies]
dev = [
"nonebot-adapter-onebot>=2.4.3",
"nonebot2[httpx]>=2.3.0",
]
[tool.nonebot]
adapters = [
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" }
]
plugin_dirs = ["src"]
builtin_plugins = []