2020-06-24 21:56:49 +08:00
|
|
|
[tool.poetry]
|
2020-09-12 13:45:03 +08:00
|
|
|
name = "nonebot2"
|
2022-10-02 15:49:31 +08:00
|
|
|
version = "2.0.0-rc.1"
|
2020-08-25 11:36:06 +08:00
|
|
|
description = "An asynchronous python bot framework."
|
2021-02-12 13:30:11 +08:00
|
|
|
authors = ["yanyongyu <yyy@nonebot.dev>"]
|
2020-06-24 21:56:49 +08:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2020-11-18 15:12:48 +08:00
|
|
|
homepage = "https://v2.nonebot.dev/"
|
2020-09-12 13:45:03 +08:00
|
|
|
repository = "https://github.com/nonebot/nonebot2"
|
2020-11-18 15:12:48 +08:00
|
|
|
documentation = "https://v2.nonebot.dev/"
|
2020-07-19 11:54:48 +08:00
|
|
|
keywords = ["bot", "qq", "qqbot", "mirai", "coolq"]
|
2020-06-24 21:56:49 +08:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Framework :: Robot Framework",
|
|
|
|
"Framework :: Robot Framework :: Library",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3"
|
|
|
|
]
|
2020-09-12 13:53:18 +08:00
|
|
|
packages = [
|
2021-02-11 17:29:16 +08:00
|
|
|
{ include = "nonebot" },
|
2020-09-12 13:53:18 +08:00
|
|
|
]
|
2020-08-23 19:21:04 +08:00
|
|
|
include = ["nonebot/py.typed"]
|
2020-06-24 21:56:49 +08:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-08-14 19:41:00 +08:00
|
|
|
python = "^3.8"
|
2021-12-22 16:53:55 +08:00
|
|
|
yarl = "^1.7.2"
|
2022-01-30 13:18:50 +08:00
|
|
|
loguru = "^0.6.0"
|
2020-12-01 10:40:21 +08:00
|
|
|
pygtrie = "^2.4.1"
|
2022-11-21 19:59:39 +08:00
|
|
|
fastapi = "^0.87.0"
|
2022-06-20 19:29:56 +08:00
|
|
|
tomlkit = ">=0.10.0,<1.0.0"
|
2021-11-17 19:52:12 +08:00
|
|
|
typing-extensions = ">=3.10.0,<5.0.0"
|
2022-11-21 19:59:39 +08:00
|
|
|
Quart = { version = "^0.18.0", optional = true }
|
2022-01-22 15:23:07 +08:00
|
|
|
websockets = { version="^10.0", optional = true }
|
2022-10-14 09:58:44 +08:00
|
|
|
pydantic = { version = "^1.10.0", extras = ["dotenv"] }
|
2022-11-21 19:59:39 +08:00
|
|
|
uvicorn = { version = "^0.20.0", extras = ["standard"] }
|
2021-07-19 01:20:17 +08:00
|
|
|
aiohttp = { version = "^3.7.4", extras = ["speedups"], optional = true }
|
2021-12-23 17:20:26 +08:00
|
|
|
httpx = { version = ">=0.20.0, <1.0.0", extras = ["http2"], optional = true }
|
2020-06-24 21:56:49 +08:00
|
|
|
|
2022-11-21 19:59:39 +08:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2021-11-22 23:21:26 +08:00
|
|
|
isort = "^5.10.1"
|
2022-02-11 11:24:34 +08:00
|
|
|
black = "^22.1.0"
|
2022-07-08 12:24:48 +08:00
|
|
|
nonemoji = "^0.1.2"
|
2022-01-15 22:12:50 +08:00
|
|
|
pre-commit = "^2.16.0"
|
2022-11-21 19:59:39 +08:00
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
pytest-cov = "^4.0.0"
|
|
|
|
pytest-xdist = "^3.0.2"
|
|
|
|
pytest-asyncio = "^0.20.0"
|
2021-12-10 17:09:12 +08:00
|
|
|
nonebug = { git = "https://github.com/nonebot/nonebug.git" }
|
2022-11-21 19:59:39 +08:00
|
|
|
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
2022-01-15 22:16:31 +08:00
|
|
|
nb-autodoc = { git = "https://github.com/nonebot/nb-autodoc.git" }
|
2020-06-24 21:56:49 +08:00
|
|
|
|
2021-02-06 09:40:57 +08:00
|
|
|
[tool.poetry.extras]
|
|
|
|
quart = ["quart"]
|
2021-12-23 17:20:26 +08:00
|
|
|
httpx = ["httpx"]
|
2021-06-21 01:22:33 +08:00
|
|
|
aiohttp = ["aiohttp"]
|
2021-12-23 17:20:26 +08:00
|
|
|
websockets = ["websockets"]
|
|
|
|
all = ["quart", "aiohttp", "httpx", "websockets"]
|
2021-02-06 09:40:57 +08:00
|
|
|
|
2021-12-10 17:01:56 +08:00
|
|
|
[tool.pytest.ini_options]
|
2022-02-13 21:56:12 +08:00
|
|
|
asyncio_mode = "auto"
|
2021-12-10 17:01:56 +08:00
|
|
|
addopts = "--cov=nonebot --cov-report=term-missing"
|
2022-06-20 15:52:12 +08:00
|
|
|
filterwarnings = [
|
|
|
|
"error",
|
|
|
|
"ignore::DeprecationWarning",
|
|
|
|
]
|
2021-12-10 17:01:56 +08:00
|
|
|
|
2021-11-22 23:21:26 +08:00
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
|
|
|
target-version = ["py37", "py38", "py39", "py310"]
|
|
|
|
include = '\.pyi?$'
|
|
|
|
extend-exclude = '''
|
|
|
|
'''
|
|
|
|
|
2021-09-18 16:11:03 +08:00
|
|
|
[tool.isort]
|
2021-11-22 23:21:26 +08:00
|
|
|
profile = "black"
|
2022-01-28 12:32:19 +08:00
|
|
|
line_length = 88
|
2021-09-18 16:11:03 +08:00
|
|
|
length_sort = true
|
|
|
|
skip_gitignore = true
|
|
|
|
force_sort_within_sections = true
|
2022-01-15 21:27:43 +08:00
|
|
|
src_paths = ["nonebot", "tests"]
|
2021-11-22 23:21:26 +08:00
|
|
|
extra_standard_library = ["typing_extensions"]
|
2021-09-18 16:11:03 +08:00
|
|
|
|
2020-06-24 21:56:49 +08:00
|
|
|
[build-system]
|
2021-02-02 13:09:20 +08:00
|
|
|
requires = ["poetry_core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|