-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (34 loc) · 913 Bytes
/
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
[tool.poetry]
name = "YoriBot"
version = "0.1.0"
description = "YoriBot"
license = "MIT"
authors = ["HiDolen <[email protected]>"]
maintainers = [
"HiDolen <[email protected]>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
nonebot2 = {extras = ["fastapi"], version = "^2.0.0"}
nonebot-adapter-onebot = "^2.2.3"
nonebot-plugin-apscheduler = "^0.2.0"
ruamel-yaml = "^0.17.26"
sqlalchemy = "^2.0.16"
aiosqlite = "^0.19.0"
httpx = ">=0.19.0"
Pillow = "^10.0.1"
[tool.poetry.group.nonebot.dependencies]
nonebot-plugin-ncm = { path = "plugins/nonebot_plugins/nonebot-plugin-ncm" }
[tool.poetry.group.dev.dependencies]
black = "^22.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "ali"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "supplemental"