nonebot2/pyproject.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

2020-06-24 13:56:49 +00:00
[tool.poetry]
2020-09-12 05:45:03 +00:00
name = "nonebot2"
2021-01-01 15:47:51 +00:00
version = "2.0.0-alpha.8.post1"
2020-08-25 03:36:06 +00:00
description = "An asynchronous python bot framework."
authors = ["yanyongyu <yanyongyu_1@126.com>"]
2020-06-24 13:56:49 +00:00
license = "MIT"
readme = "README.md"
2020-11-18 07:12:48 +00:00
homepage = "https://v2.nonebot.dev/"
2020-09-12 05:45:03 +00:00
repository = "https://github.com/nonebot/nonebot2"
2020-11-18 07:12:48 +00:00
documentation = "https://v2.nonebot.dev/"
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"
]
packages = [
{ include = "nonebot" }
]
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"
httpx = "^0.16.1"
2020-09-12 05:45:03 +00:00
loguru = "^0.5.1"
2020-12-01 02:40:21 +00:00
pygtrie = "^2.4.1"
2020-12-31 10:05:49 +00:00
fastapi = "^0.63.0"
2020-07-04 14:51:10 +00:00
uvicorn = "^0.11.5"
pydantic = {extras = ["dotenv", "typing_extensions"], version = "^1.7.3"}
2020-06-24 13:56:49 +00:00
[tool.poetry.dev-dependencies]
yapf = "^0.30.0"
2020-12-31 10:05:49 +00:00
sphinx = "^3.4.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.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
default = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"