-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (63 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "aunly-bbot"
version = "1.6.1"
description = "一个用于 QQ 群内高效推送哔哩哔哩 UP 动态及直播的机器人"
readme = "readme.md"
keywords = ["graia", "graiax", "bilibili", "qqbot", "grpc", "playwright", "fastapi", "bot", "openai", "chatgpt"]
license = {text = "AGPL3.0"}
authors = [
{name = "djkcyl", email = "[email protected]"},
]
requires-python = ">=3.9,<4.0"
dependencies = [
"graia-ariadne[standard]>=0.11.5",
"peewee>=3.16.2",
"pyyaml>=6.0",
"bilireq>=0.2.11",
"psutil>=5.9.5",
"uvicorn>=0.22.0",
"sentry-sdk>=1.25.1",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"python-multipart>=0.0.6",
"fastapi>=0.97.0",
"websockets>=11.0.3",
"qrcode>=7.4.2",
"pillow>=9.5.0",
"noneprompt>=0.1.9",
"minidynamicrender>=1.2.6",
"lxml>=4.9.2",
"tiktoken-async>=0.3.2",
]
[tool.pdm.build]
includes = [
"aunly_bbot"
]
excludes = [
"aunly_bbot/static/browser"
]
[tool.pdm.dev-dependencies]
dev = [
"yamllint>=1.32.0",
"black>=23.3.0",
"flake8>=6.0.0",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.black]
line-length = 96
[project.urls]
homepage = "https://github.com/djkcyl/BBot-Graia"
repository = "https://github.com/djkcyl/BBot-Graia/tree/master/bbot"
documentation = "https://github.com/djkcyl/BBot-Graia/blob/master/readme.md"
[project.optional-dependencies]
full = [
"graiax-playwright>=0.2.4",
"graiax-text2img-playwright>=0.4.0",
"wordcloud>=1.9.2",
"jieba>=0.42.1",
"jinja2>=3.1.2",
]
[project.scripts]
bbot = "aunly_bbot.__main__:main"