forked from kexue-z/nonebot-plugin-heweather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 1.05 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
[project]
name = "nonebot-plugin-heweather"
version = "0.7.0"
description = "Get Heweather information and convert to pictures"
authors = [{ name = "kexue", email = "[email protected]" }]
dependencies = [
"httpx<1.0.0,>=0.18.0",
"nonebot-plugin-htmlrender>=0.0.4.3",
"pydantic>=1.5.0",
"nonebot2[fastapi]>=2.0.1",
"nonebot-plugin-send-anything-anywhere>=0.3.0",
]
requires-python = ">=3.8,<4.0"
license = { file = "LICENSE" }
readme = "README.md"
[project.urls]
"Homepage" = "https://github.com/kexue-z/nonebot-plugin-heweather"
"Bug Tracker" = "https://github.com/kexue-z/nonebot-plugin-heweather/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
line_length = 88
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
[tool.pdm.build]
includes = []
[tool.pdm.dev-dependencies]
dev = [
"pillow>=9.5.0",
"nonebug>=0.3.4",
"pytest-asyncio>=0.21.0",
"isort>=5.12.0",
"nonebot-adapter-onebot>=2.3.1",
]