-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
124 lines (111 loc) · 2.95 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[project]
name = "nonebot-plugin-literature"
version = "0.1.0"
description = "build a world of open science."
authors = [
{ name = "BalconyJH", email = "balconyjh@gmail.com" },
]
dependencies = [
"setuptools>=68.2.2",
"nonebot-adapter-onebot>=2.3.1",
"uvicorn[standard]>=0.23.2",
"fastapi>=0.104.0",
"nonebot2>=2.1.1",
"nonebot-plugin-send-anything-anywhere>=0.3.2",
"pillow>=10.1.0",
"nonebot-plugin-localstore>=0.5.1",
"nonebot-plugin-apscheduler>=0.3.0",
"nonebot-plugin-htmlrender>=0.2.3",
"niquests>=3.4.4",
"feedparser~=6.0",
"httpx~=0.27",
]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.nonebot]
adapters = [
{ name = "OneBot V12", module_name = "nonebot.adapters.onebot.v12", project_link = "nonebot-adapter-onebot", desc = "OneBot V12 协议" },
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11", project_link = "nonebot-adapter-onebot", desc = "OneBot V11 协议" },
]
plugins = ["nonebot_plugin_literature"]
plugin_dirs = []
builtin_plugins = []
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
test = [
"nonebug>=0.3.5",
"pytest-asyncio>=0.21.1",
"isort>=5.12.0",
"black>=23.7.0",
"pre-commit>=3.3.3",
"flake8>=6.1.0",
"nonebug-saa>=0.3.1",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.5.0",
]
[tool.black]
line-length = 120
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 120
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
src_paths = ["nonebot_plugin_literature", "tests"]
extra_standard_library = ["typing_extensions"]
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
select = [
"F", # Pyflakes
"W", # pycodestyle warnings
"E", # pycodestyle errors
"UP", # pyupgrade
"ASYNC", # flake8-async
"C4", # flake8-comprehensions
"T10", # flake8-debugger
"T20", # flake8-print
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RUF", # Ruff-specific rules
]
ignore = [
"E402", # module-import-not-at-top-of-file
"UP037", # quoted-annotation
"RUF001", # ambiguous-unicode-character-string
"RUF002", # ambiguous-unicode-character-docstring
"RUF003", # ambiguous-unicode-character-comment
]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.format]
quote-style = "double"
[tool.pyright]
pythonVersion = "3.8"
pythonPlatform = "All"
venvPath = "."
venv = ".venv"
executionEnvironments = [
{ root = "./tests", extraPaths = [
"./",
] },
{ root = "./" },
]
typeCheckingMode = "basic"
reportShadowedImports = false
disableBytesTypePromotions = true
reportMissingImports = true
[tool.pytest.ini_options]
asyncio_mode = "strict"