-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (39 loc) · 1008 Bytes
/
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
[tool.poetry]
name = "nonebot-plugin-animeres"
version = "1.0.5"
description = "动漫资源获取插件"
authors = ["MelodyKnit <[email protected]>"]
readme = "README.md"
license = "GPL-2.0"
packages = [{include = "nonebot_plugin_animeres"}]
keywords = ["nonebot", "nonebot2", "animeres", "anime"]
[tool.poetry.dependencies]
python = "^3.9"
lxml = "^4.9.2"
fake-useragent = "^2.0.3"
httpx = ">=0.26.0,<1.0.0"
nonebot2 = "^2.4.1"
nonebot-adapter-onebot = { version = "^2.2.3", optional = true }
[tool.poetry.group.dev.dependencies]
pycln = "^2.1.2"
isort = "^5.10.1"
black = "^23.1.0"
flake8 = "^4.0.1"
pre-commit = "^3.0.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 88
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = ["typing_extensions"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"