QQ-GitHub-Bot/pyproject.toml

38 lines
878 B
TOML
Raw Normal View History

2020-09-10 09:29:27 +00:00
[tool.poetry]
name = "qq-github-bot"
version = "0.1.0"
description = "GitHub Bot for QQ"
authors = ["yanyongyu <yanyongyu_1@126.com>"]
license = "MIT"
[tool.poetry.dependencies]
2021-03-06 14:33:57 +00:00
python = "^3.7.3"
2020-09-17 16:49:47 +00:00
psutil = "^5.7.2"
2021-03-10 18:00:01 +00:00
httpx = "^0.17.0"
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-03-06 14:33:57 +00:00
nonebot2 = "^2.0.0-alpha.11"
nonebot-adapter-cqhttp = "^2.0.0a11.post2"
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-03-14 04:58:50 +00:00
nb-cli = {version = "^0.4.0", 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-03-10 18:00:01 +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"