blob: 863d133a28b57309c2b3b85e8b0fdee1de010f35 (
plain)
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
|
[tool.poetry]
name = "ATRI"
version = "001.107.01"
description = "A project for ATRI, Usage go-CQHTTP + Nonebot2."
authors = ["Kyomotoi <kyomotoiowo@gmail.com>"]
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.1.1"
nonebot2 = "2.0.0-rc.1"
nonebot-adapter-onebot = "2.0.0-beta.1"
nonebot-plugin-gocqhttp = "^0.5.5"
psutil = "^5.9.1"
pytz = "^2022.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"
[tool.poetry.dev-dependencies]
black = "^22.3"
nonebug = "^0.2.1"
[tool.poetry.group.dev.dependencies]
black = {version = "^22.8.0", allow-prereleases = true}
[tool.pytest.ini_options]
addopts = '-p no:warnings'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|