forked from kexue-z/nonebot-plugin-htmlrender
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.26 KB
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
47
48
49
50
51
52
53
54
55
[project]
name = "nonebot-plugin-htmlrender"
version = "0.5.1"
description = "通过浏览器渲染图片"
readme = "README.md"
authors = [{ name = "kexue", email = "[email protected]" }]
requires-python = ">=3.9,<4.0"
license = { file = "LICENSE" }
dependencies = [
"aiofiles>=0.8.0",
"jinja2>=3.0.3",
"markdown>=3.3.6",
"nonebot2>=2.2.0",
"playwright>=1.48.0",
"pygments>=2.10.0",
"pymdown-extensions>=9.1",
"python-markdown-math>=0.8",
]
[project.urls]
"Homepage" = "https://github.com/kexue-z/nonebot-plugin-htmlrender"
"Bug Tracker" = "https://github.com/kexue-z/nonebot-plugin-htmlrender/issues"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
addopts = ["--import-mode=importlib"]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"nonebot-adapter-onebot>=2.4.6",
"nonebot2[fastapi]>=2.3.3",
"nonebug>=0.4.2",
"pillow>=11.0.0",
"pytest-asyncio>=0.24.0",
]
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
defineConstant = { PYDANTIC_V2 = true }
executionEnvironments = [
{ root = "./tests", extraPaths = [
"./",
] },
{ root = "./" },
]
typeCheckingMode = "standard"
reportShadowedImports = false
disableBytesTypePromotions = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"