This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
68 lines (61 loc) · 1.72 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
[project]
name = "efb-qq-plugin-go-cqhttp"
description = "EQS plugin for Go-CQHttp API Compatible Client."
authors = [{ name = "XYenon", email = "i@xyenon.bid" }]
dependencies = [
"efb-qq-slave @ git+https://github.com/milkice233/efb-qq-slave@master",
"ehforwarderbot>=2.1.1",
"PyYAML~=6.0",
"python-magic~=0.4.25",
"Pillow~=9.0",
"aiocqhttp~=1.4.4",
"quart~=0.17.0",
"hypercorn~=0.13.2",
"pilk~=0.0.2",
"pydub~=0.25.1",
"httpx>=0.23.3",
]
requires-python = ">=3.7"
license = { text = "AGPL-3.0-only" }
readme = "README.rst"
keywords = [
"ehforwarderbot",
"EH Forwarder Bot",
"EH Forwarder Bot Slave Channel",
"qq",
"chatbot",
"EQS",
"CoolQ",
"go-cqhttp",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat",
"Topic :: Utilities",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/ehForwarderBot/efb-qq-plugin-go-cqhttp"
[project.entry-points."ehforwarderbot.qq.plugin"]
GoCQHttp = "efb_qq_plugin_go_cqhttp:GoCQHttp"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.pdm]
version = { from = "efb_qq_plugin_go_cqhttp/__init__.py" }
[tool.pdm.dev-dependencies]
dev = ["efb-telegram-master~=2.2.4"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
atomic = true
filter_files = true