QQ-GitHub-Bot/pyproject.toml

34 lines
744 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-06 14:33:57 +00:00
nb-cli = "^0.4.0"
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"
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"
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"
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"]
# [[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"