-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.57 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
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "nonebot-plugin-mahjong-scoreboard"
version = "0.7.0"
description = "日麻寄分器(NoneBot插件)"
authors = ["ssttkkl <[email protected]>"]
readme = "README.MD"
license = "MIT"
repository = "https://github.com/ssttkkl/nonebot-plugin-mahjong-scoreboard"
packages = [
{ include = "nonebot_plugin_mahjong_scoreboard", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
nonebot2 = "^2.2"
nonebot_plugin_apscheduler = ">=0.3.0"
nonebot-plugin-gocqhttp-cross-machine-upload-file = ">=0.1.5"
nonebot-plugin-localstore = ">=0.5.1"
nonebot-plugin-sqlalchemy = ">=0.2.1"
nonebot-plugin-session = ">=0.2.0"
aiosqlite = ">=0.17.0"
tzlocal = ">=4.2"
cachetools = ">=5.2.0"
ssttkkl-nonebot-utils = ">=0.1.15"
nonebot-plugin-htmlrender = { version = ">=0.2.0.3", optional = true }
nonebot-plugin-send-anything-anywhere = { version = ">=0.3.0", optional = true }
prettytable = { version = ">=3.8.0", optional = true }
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.275"
isort = "^5.10.1"
black = "^23.1.0"
pre-commit = "^3.1.0"
setuptools = "^68.1.2"
nb-cli = "^1.2.5"
nonebot-plugin-orm = {extras = ["default"], version = "^0.6.0"}
nonebot2 = {extras = ["fastapi"], version = "^2.1.2"}
nonebot-adapter-onebot = "*"
nonebot-adapter-qqguild = "*"
nonebug = "^0.3.5"
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.1.0"
asyncpg = "^0.28.0"
[tool.poetry.extras]
htmlrender = ["nonebot-plugin-htmlrender", "nonebot-plugin-send-anything-anywhere", "prettytable"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"