-
Notifications
You must be signed in to change notification settings - Fork 57
/
pyproject.toml
64 lines (58 loc) · 1.5 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
[tool.poetry]
name = "ELF_RSS"
version = "2.6.25"
description = "QQ机器人 RSS订阅 插件,订阅源建议选择 RSSHub"
authors = ["Quan666 <i@Rori.eMail>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [
{ include = "ELF_RSS2", from = "src/plugins" },
]
homepage = "https://github.com/Quan666/ELF_RSS"
repository = "https://github.com/Quan666/ELF_RSS"
keywords = ["nonebot", "nonebot2", "rss" ,"elf" ,"rsshub"]
[tool.poetry.dependencies]
python = "^3.13.1"
aiohttp = {extras = ["speedups"], version = "^3.11.10"}
arrow = "^1.3.0"
async-timeout = "^4.0.3"
bbcode = "^1.1.0"
cachetools = "^5.5.0"
emoji = "^2.14.0"
feedparser = "^6.0.11"
deep-translator = "^1.11.4"
ImageHash = "^4.3.1"
magneturi = "^1.3"
nonebot-adapter-onebot = "^2.4.6"
nonebot-plugin-apscheduler = "^0.5.0"
nonebot2 = {extras = ["fastapi"], version = "^2.4.0"}
pikpakapi = "^0.1.10"
Pillow = "^10.4.0"
pydantic = ">=1.10.19,<3.0.0,!=2.5.0,!=2.5.1"
pyquery = "^2.0.1"
python-qbittorrent = "^0.4.3"
tenacity = "^8.5.0"
tinydb = "^4.8.2"
yarl = "^1.18.3"
[tool.poetry.dev-dependencies]
nb-cli = "^1.4.2"
[tool.mypy]
python_version = "3.8"
plugins = [
"pydantic.mypy"
]
ignore_missing_imports = true
implicit_reexport = true
pretty = true
show_error_codes = true
strict = true
[tool.ruff]
select = ["F", "E", "W", "I", "UP"]
target-version = "py38"
line-length = 120
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"*.py" = ["E402", "F811"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"