nonebot2/pyproject.toml

49 lines
1.4 KiB
TOML
Raw Normal View History

2020-06-24 13:56:49 +00:00
[tool.poetry]
name = "nonebot"
version = "2.0.0"
description = "An asynchronous QQ bot framework."
authors = ["Richard Chien <richardchienthebest@gmail.com>", "yanyongyu <yanyongyu_1@126.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://nonebot.cqp.moe/"
repository = "https://github.com/nonebot/nonebot"
documentation = "https://nonebot.cqp.moe/"
2020-07-19 03:54:48 +00:00
keywords = ["bot", "qq", "qqbot", "mirai", "coolq"]
2020-06-24 13:56:49 +00:00
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
2020-08-23 11:21:04 +00:00
include = ["nonebot/py.typed"]
2020-06-24 13:56:49 +00:00
[tool.poetry.dependencies]
python = "^3.7"
2020-07-19 03:54:48 +00:00
httpx = "^0.13.3"
2020-08-17 08:09:41 +00:00
pygtrie = "^2.3.3"
2020-07-04 14:51:10 +00:00
fastapi = "^0.58.1"
uvicorn = "^0.11.5"
2020-08-13 10:16:59 +00:00
pydantic = { extras = ["dotenv"], version = "^1.6.1" }
2020-06-24 13:56:49 +00:00
apscheduler = { version = "^3.6.3", optional = true }
2020-08-13 10:16:59 +00:00
nonebot-test = { version = "^0.1.0", optional = true }
2020-06-24 13:56:49 +00:00
[tool.poetry.dev-dependencies]
yapf = "^0.30.0"
2020-06-30 04:10:57 +00:00
sphinx = "^3.1.1"
2020-07-04 14:51:10 +00:00
sphinx-markdown-builder = { git = "https://github.com/nonebot/sphinx-markdown-builder.git" }
2020-06-24 13:56:49 +00:00
[tool.poetry.extras]
2020-07-19 03:54:48 +00:00
test = ["nonebot-test"]
2020-06-24 13:56:49 +00:00
scheduler = ["apscheduler"]
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
default = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"