-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
pyproject.toml
55 lines (48 loc) · 1.34 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 = "ATRI"
version = "001.107.01"
description = "A project for ATRI, Usage go-CQHTTP + Nonebot2."
authors = ["Kyomotoi <[email protected]>"]
license = "GPLv3"
readme = "README.md"
homepage = "https://atri.imki.moe/"
repository = "https://github.com/Kyomotoi/ATRI"
documentation = "https://atri.imki.moe/"
[[tool.poetry.source]]
name = "tsinghua-mirror"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.poetry.dependencies]
python = "^3.8.5"
aiofiles = "^0.8.0"
APScheduler = "^3.9.1"
Pillow = "^9.3.0"
nonebot2 = {extras = ["fastapi"], version = "^2.0.0rc3"}
nonebot-adapter-onebot = "^2.0.0-beta.1"
nonebot-plugin-gocqhttp = "^0.5.5"
psutil = "^5.9.1"
PyYAML = "^6.0"
scikit-image = "^0.19.2"
jieba = "^0.42.1"
tabulate = "^0.8.9"
wcwidth = "^0.2.5"
tortoise-orm = "^0.19.1"
httpx = "^0.23.0"
xmltodict = "^0.13.0"
parsel = "^1.6.0"
onnxruntime = "^1.12.1"
geoip2 = "^4.6.0"
rich = "^13.3.1"
wmi = {version = "^1.5.1", markers = "sys_platform == 'win32'"}
[tool.poetry.dev-dependencies]
black = "^22.3"
[tool.poetry.group.dev.dependencies]
black = {version = "^22.8.0", allow-prereleases = true}
[tool.poetry.group.test.dependencies]
pytest-asyncio = "^0.21.0"
nonebug = "^0.3.3"
[tool.pytest.ini_options]
addopts = '-p no:warnings'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"