2020-06-24 21:56:49 +08:00
|
|
|
[tool.poetry]
|
2020-09-12 13:45:03 +08:00
|
|
|
name = "nonebot2"
|
2023-04-01 11:52:43 +08:00
|
|
|
version = "2.0.0rc4"
|
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"
|
2023-03-17 15:48:48 +08:00
|
|
|
typing-extensions = ">=4.0.0,<5.0.0"
|
2023-02-20 22:25:14 +08:00
|
|
|
tomli = { version = "^2.0.1", python = "<3.11" }
|
2022-10-14 09:58:44 +08:00
|
|
|
pydantic = { version = "^1.10.0", extras = ["dotenv"] }
|
2022-11-24 11:35:31 +08:00
|
|
|
|
2023-01-06 20:07:28 +08:00
|
|
|
websockets = { version = "^10.0", optional = true }
|
2022-11-24 11:35:31 +08:00
|
|
|
Quart = { version = ">=0.18.0,<1.0.0", optional = true }
|
2023-04-01 11:52:43 +08:00
|
|
|
fastapi = { version = ">=0.93.0,<1.0.0", optional = true }
|
2021-07-19 01:20:17 +08:00
|
|
|
aiohttp = { version = "^3.7.4", extras = ["speedups"], optional = true }
|
2022-11-24 11:35:31 +08:00
|
|
|
httpx = { version = ">=0.20.0,<1.0.0", extras = ["http2"], optional = true }
|
2023-01-06 20:07:28 +08:00
|
|
|
uvicorn = { version = ">=0.20.0,<1.0.0", extras = ["standard"], optional = true }
|
2020-06-24 21:56:49 +08:00
|
|
|
|
2022-11-21 19:59:39 +08:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-12-17 17:04:38 +08:00
|
|
|
pycln = "^2.1.2"
|
2021-11-22 23:21:26 +08:00
|
|
|
isort = "^5.10.1"
|
2023-02-05 12:57:31 +08:00
|
|
|
black = "^23.1.0"
|
2022-07-08 12:24:48 +08:00
|
|
|
nonemoji = "^0.1.2"
|
2023-02-05 12:57:31 +08:00
|
|
|
pre-commit = "^3.0.0"
|
2022-11-21 19:59:39 +08:00
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
2023-02-22 23:32:48 +08:00
|
|
|
nonebug = "^0.3.0"
|
2022-11-21 19:59:39 +08:00
|
|
|
pytest-cov = "^4.0.0"
|
|
|
|
pytest-xdist = "^3.0.2"
|
2023-04-01 11:52:43 +08:00
|
|
|
pytest-asyncio = "^0.21.0"
|
2023-03-29 11:57:33 +08:00
|
|
|
coverage-conditional-plugin = "^0.8.0"
|
2022-11-21 19:59:39 +08:00
|
|
|
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
2023-02-28 14:46:09 +08:00
|
|
|
nb-autodoc = "^1.0.0a5"
|
2020-06-24 21:56:49 +08:00
|
|
|
|
2021-02-06 09:40:57 +08:00
|
|
|
[tool.poetry.extras]
|
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"]
|
2023-01-06 20:07:28 +08:00
|
|
|
quart = ["quart", "uvicorn"]
|
|
|
|
fastapi = ["fastapi", "uvicorn"]
|
|
|
|
all = ["fastapi", "quart", "aiohttp", "httpx", "websockets", "uvicorn"]
|
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"
|
2023-02-22 23:32:48 +08:00
|
|
|
addopts = "--cov=nonebot --cov-append --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
|
2022-11-24 11:35:31 +08:00
|
|
|
target-version = ["py38", "py39", "py310", "py311"]
|
2021-11-22 23:21:26 +08:00
|
|
|
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
|
|
|
|
2022-12-17 17:04:38 +08:00
|
|
|
[tool.pycln]
|
|
|
|
path = "."
|
|
|
|
all = false
|
|
|
|
|
2022-12-20 18:13:45 +08:00
|
|
|
[tool.pyright]
|
|
|
|
reportShadowedImports = false
|
2023-01-06 12:42:20 +08:00
|
|
|
pythonVersion = "3.8"
|
|
|
|
pythonPlatform = "All"
|
|
|
|
executionEnvironments = [
|
|
|
|
{ root = "./tests", extraPaths = ["./"] },
|
|
|
|
{ root = "./" },
|
|
|
|
]
|
|
|
|
|
2022-12-20 18:13:45 +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"
|