-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.24 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
[tool.poetry]
name = "nonebot_plugin_memes"
version = "0.7.12"
description = "Nonebot2 plugin for making memes"
authors = ["meetwq <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/noneplugin/nonebot-plugin-memes"
repository = "https://github.com/noneplugin/nonebot-plugin-memes"
[tool.poetry.dependencies]
python = "^3.9"
nonebot2 = "^2.3.0"
nonebot-plugin-alconna = ">=0.46.3,<1.0.0"
nonebot-plugin-uninfo = ">=0.6.1,<1.0.0"
nonebot-plugin-localstore = ">=0.6.0,<1.0.0"
nonebot-plugin-orm = ">=0.7.0,<1.0.0"
httpx = ">=0.20.0,<1.0.0"
meme-generator = "^0.1.1"
pypinyin = ">=0.44.0,<1.0.0"
pyyaml = "^6.0"
rapidfuzz = "^3.9.0"
matplotlib = "^3.7.0"
python-dateutil = "^2.8.2"
[tool.poetry.group.dev.dependencies]
nonebot-plugin-orm = { extras = ["default"], version = ">=0.7.0,<1.0.0" }
[tool.nonebot]
plugins = ["nonebot_plugin_memes"]
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
defineConstant = { PYDANTIC_V2 = true }
typeCheckingMode = "basic"
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"]
ignore = ["E402", "C901", "UP037"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"