nonebot2/pyproject.toml

68 lines
2.1 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-08-12 06:14:01 +00:00
version = "2.0.0-alpha.15"
2020-08-25 03:36:06 +00:00
description = "An asynchronous python bot framework."
2021-02-12 05:30:11 +00:00
authors = ["yanyongyu <yyy@nonebot.dev>"]
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.3"
2020-09-12 05:45:03 +00:00
loguru = "^0.5.1"
2020-12-01 02:40:21 +00:00
pygtrie = "^2.4.1"
2021-03-01 11:24:03 +00:00
tomlkit = "^0.7.0"
2021-08-04 04:55:30 +00:00
fastapi = "^0.68.0"
websockets = "^9.1"
Quart = { version = "^0.15.0", optional = true }
2021-09-18 09:18:53 +00:00
httpx = { version = "^0.19.0", extras = ["http2"] }
2021-03-01 11:24:03 +00:00
pydantic = { extras = ["dotenv"], version = "~1.8.0" }
2021-09-28 12:56:05 +00:00
uvicorn = { version = "^0.15.0", extras = ["standard"] }
2021-07-18 17:20:17 +00:00
aiohttp = { version = "^3.7.4", extras = ["speedups"], optional = true }
2020-06-24 13:56:49 +00:00
[tool.poetry.dev-dependencies]
yapf = "^0.31.0"
sphinx = "^4.1.1"
2021-09-17 12:36:08 +00:00
nonebot-plugin-test = "^0.3.0"
nonebot-adapter-cqhttp = { path = "./packages/nonebot-adapter-cqhttp", develop = true }
nonebot-adapter-ding = { path = "./packages/nonebot-adapter-ding", develop = true }
nonebot-adapter-mirai = { path = "./packages/nonebot-adapter-mirai", develop = true }
2021-07-03 05:53:01 +00:00
nonebot-adapter-feishu = { path = "./packages/nonebot-adapter-feishu", develop = true }
2021-07-23 06:58:03 +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]
quart = ["quart"]
2021-06-20 17:22:33 +00:00
aiohttp = ["aiohttp"]
all = ["quart", "aiohttp"]
# [[tool.poetry.source]]
# name = "aliyun"
# url = "https://mirrors.aliyun.com/pypi/simple/"
# default = true
2020-06-24 13:56:49 +00:00
[tool.isort]
line_length = 80
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = "typing_extensions"
2020-06-24 13:56:49 +00:00
[build-system]
2021-02-02 05:09:20 +00:00
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"