2020-11-22 01:20:14 +08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "nonebot-plugin-docs"
|
2021-12-29 21:09:31 +08:00
|
|
|
version = "2.0.0-beta.1"
|
2020-11-22 01:20:14 +08:00
|
|
|
description = "View NoneBot2 Docs Locally"
|
2021-02-12 13:30:11 +08:00
|
|
|
authors = ["yanyongyu <yyy@nonebot.dev>"]
|
2020-11-22 01:20:14 +08:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2020-11-28 11:59:26 +08:00
|
|
|
homepage = "https://github.com/nonebot/nonebot2/blob/master/packages/nonebot-plugin-docs"
|
|
|
|
repository = "https://github.com/nonebot/nonebot2"
|
2020-11-22 03:05:28 +08:00
|
|
|
keywords = ["nonebot", "nonebot2", "docs"]
|
|
|
|
include = ["nonebot_plugin_docs/dist/**/*"]
|
|
|
|
|
2020-11-22 01:20:14 +08:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-12-22 16:53:55 +08:00
|
|
|
python = "^3.7.3"
|
|
|
|
nonebot2 = "^2.0.0-beta.1"
|
2020-11-22 01:20:14 +08:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
2021-11-22 23:21:26 +08:00
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
|
|
|
target-version = ["py37", "py38", "py39"]
|
|
|
|
include = '\.pyi?$'
|
|
|
|
extend-exclude = '''
|
|
|
|
'''
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 80
|
|
|
|
length_sort = true
|
|
|
|
skip_gitignore = true
|
|
|
|
force_sort_within_sections = true
|
|
|
|
extra_standard_library = ["typing_extensions"]
|
|
|
|
|
2020-11-22 01:20:14 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|