QQ-GitHub-Bot/pyproject.toml

41 lines
941 B
TOML
Raw Normal View History

2020-09-10 09:29:27 +00:00
[tool.poetry]
name = "qq-github-bot"
2021-06-24 10:58:36 +00:00
version = "0.1.4"
2020-09-10 09:29:27 +00:00
description = "GitHub Bot for QQ"
authors = ["yanyongyu <yanyongyu_1@126.com>"]
license = "MIT"
[tool.poetry.dependencies]
2021-05-22 18:04:58 +00:00
python = "^3.8"
2020-09-17 16:49:47 +00:00
psutil = "^5.7.2"
2021-03-10 18:00:01 +00:00
httpx = "^0.17.0"
2021-05-22 18:04:58 +00:00
Jinja2 = "^3.0.0"
unidiff = "^0.6.0"
humanize = "^3.5.0"
2021-03-10 18:00:01 +00:00
pydantic = "^1.8.1"
2021-03-08 17:34:47 +00:00
Markdown = "^3.3.4"
2021-03-06 14:33:57 +00:00
sentry-sdk = "^1.0.0"
playwright = "^1.9.2"
2021-03-08 17:34:47 +00:00
typing-extensions = "^3.7.4"
2021-04-02 06:52:07 +00:00
nonebot2 = "=2.0.0a13.post1"
2021-03-31 15:22:58 +00:00
nonebot-adapter-cqhttp = "^2.0.0-alpha.12"
2021-03-12 10:19:34 +00:00
redis = {version = "^3.5.3", extras = ["hiredis"]}
2020-09-10 09:29:27 +00:00
[tool.poetry.dev-dependencies]
yapf = "^0.30.0"
2021-03-06 14:33:57 +00:00
nonebot-plugin-test = "^0.2.0"
2021-04-02 06:52:07 +00:00
nb-cli = {version = "^0.4.1", extras = ["deploy"]}
2020-09-10 09:29:27 +00:00
2021-03-06 14:33:57 +00:00
[nonebot.plugins]
plugins = ["nonebot_plugin_test"]
plugin_dirs = ["src/plugins"]
2021-04-02 06:52:07 +00:00
# [[tool.poetry.source]]
# name = "aliyun"
# url = "https://mirrors.aliyun.com/pypi/simple/"
# default = true
2020-09-17 16:49:47 +00:00
2020-09-10 09:29:27 +00:00
[build-system]
2021-03-06 14:33:57 +00:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"